{
  "openapi": "3.0.0",
  "info": {
    "title": "i4backend4",
    "version": "4.3.18",
    "description": "Lukatec 4 Backend Application",
    "contact": {}
  },
  "paths": {
    "/Parametros": {
      "patch": {
        "x-controller-name": "ParametroController",
        "x-operation-name": "updateAll",
        "tags": [
          "ParametroController"
        ],
        "responses": {
          "200": {
            "description": "Parametro PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Parametro.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Parametro>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ParametroPartial"
              }
            }
          }
        },
        "operationId": "ParametroController.updateAll"
      }
    },
    "/alexa/producao": {
      "post": {
        "x-controller-name": "AlexaController",
        "x-operation-name": "alexaProducao",
        "tags": [
          "AlexaController"
        ],
        "responses": {
          "200": {
            "description": "Auth Code",
            "content": {}
          }
        },
        "parameters": [
          {
            "name": "estabelecimentoId",
            "in": "query",
            "schema": {
              "type": "number"
            }
          },
          {
            "name": "intervalo",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "AlexaController.alexaProducao"
      }
    },
    "/app-releases/count": {
      "get": {
        "x-controller-name": "AppReleaseController",
        "x-operation-name": "count",
        "tags": [
          "AppReleaseController"
        ],
        "responses": {
          "200": {
            "description": "AppRelease model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AppRelease.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AppRelease>"
                }
              }
            }
          }
        ],
        "operationId": "AppReleaseController.count"
      }
    },
    "/app-releases/{id}": {
      "put": {
        "x-controller-name": "AppReleaseController",
        "x-operation-name": "replaceById",
        "tags": [
          "AppReleaseController"
        ],
        "responses": {
          "204": {
            "description": "AppRelease PUT success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppRelease"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AppReleaseController.replaceById"
      },
      "patch": {
        "x-controller-name": "AppReleaseController",
        "x-operation-name": "updateById",
        "tags": [
          "AppReleaseController"
        ],
        "responses": {
          "204": {
            "description": "AppRelease PATCH success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppReleasePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AppReleaseController.updateById"
      },
      "get": {
        "x-controller-name": "AppReleaseController",
        "x-operation-name": "findById",
        "tags": [
          "AppReleaseController"
        ],
        "responses": {
          "200": {
            "description": "AppRelease model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppReleaseWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppRelease.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AppReleaseController.findById"
      },
      "delete": {
        "x-controller-name": "AppReleaseController",
        "x-operation-name": "deleteById",
        "tags": [
          "AppReleaseController"
        ],
        "responses": {
          "204": {
            "description": "AppRelease DELETE success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "AppReleaseController.deleteById"
      }
    },
    "/app-releases": {
      "post": {
        "x-controller-name": "AppReleaseController",
        "x-operation-name": "create",
        "tags": [
          "AppReleaseController"
        ],
        "responses": {
          "200": {
            "description": "AppRelease model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppRelease"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewAppRelease"
              }
            }
          }
        },
        "operationId": "AppReleaseController.create"
      },
      "patch": {
        "x-controller-name": "AppReleaseController",
        "x-operation-name": "updateAll",
        "tags": [
          "AppReleaseController"
        ],
        "responses": {
          "200": {
            "description": "AppRelease PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AppRelease.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AppRelease>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppReleasePartial"
              }
            }
          }
        },
        "operationId": "AppReleaseController.updateAll"
      },
      "get": {
        "x-controller-name": "AppReleaseController",
        "x-operation-name": "find",
        "tags": [
          "AppReleaseController"
        ],
        "responses": {
          "200": {
            "description": "Array of AppRelease model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AppReleaseWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppRelease.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "AppReleaseController.find"
      }
    },
    "/apps/count": {
      "get": {
        "x-controller-name": "AppController",
        "x-operation-name": "count",
        "tags": [
          "AppController"
        ],
        "responses": {
          "200": {
            "description": "App model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "App.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<App>"
                }
              }
            }
          }
        ],
        "operationId": "AppController.count"
      }
    },
    "/apps/{id}": {
      "put": {
        "x-controller-name": "AppController",
        "x-operation-name": "replaceById",
        "tags": [
          "AppController"
        ],
        "responses": {
          "204": {
            "description": "App PUT success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/App"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AppController.replaceById"
      },
      "patch": {
        "x-controller-name": "AppController",
        "x-operation-name": "updateById",
        "tags": [
          "AppController"
        ],
        "responses": {
          "204": {
            "description": "App PATCH success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AppController.updateById"
      },
      "get": {
        "x-controller-name": "AppController",
        "x-operation-name": "findById",
        "tags": [
          "AppController"
        ],
        "responses": {
          "200": {
            "description": "App model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AppWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/App.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AppController.findById"
      },
      "delete": {
        "x-controller-name": "AppController",
        "x-operation-name": "deleteById",
        "tags": [
          "AppController"
        ],
        "responses": {
          "204": {
            "description": "App DELETE success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "AppController.deleteById"
      }
    },
    "/apps": {
      "post": {
        "x-controller-name": "AppController",
        "x-operation-name": "create",
        "tags": [
          "AppController"
        ],
        "responses": {
          "200": {
            "description": "App model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/App"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewApp"
              }
            }
          }
        },
        "operationId": "AppController.create"
      },
      "patch": {
        "x-controller-name": "AppController",
        "x-operation-name": "updateAll",
        "tags": [
          "AppController"
        ],
        "responses": {
          "200": {
            "description": "App PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "App.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<App>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AppPartial"
              }
            }
          }
        },
        "operationId": "AppController.updateAll"
      },
      "get": {
        "x-controller-name": "AppController",
        "x-operation-name": "find",
        "tags": [
          "AppController"
        ],
        "responses": {
          "200": {
            "description": "Array of App model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AppWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/App.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "AppController.find"
      }
    },
    "/auth/login": {
      "post": {
        "x-controller-name": "LoginController",
        "x-operation-name": "login",
        "tags": [
          "LoginController"
        ],
        "responses": {
          "200": {
            "description": "Auth Code",
            "content": {}
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/LoginRequest"
              }
            }
          }
        },
        "operationId": "LoginController.login"
      }
    },
    "/auth/reset-password": {
      "post": {
        "x-controller-name": "UserManagementController",
        "x-operation-name": "resetPassword",
        "tags": [
          "UserManagementController"
        ],
        "responses": {
          "200": {
            "description": "Reset password using token",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ResetPasswordResponse"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ResetPassword"
              }
            }
          }
        },
        "operationId": "UserManagementController.resetPassword"
      }
    },
    "/auth/validate-reset-token": {
      "post": {
        "x-controller-name": "UserManagementController",
        "x-operation-name": "validateResetToken",
        "tags": [
          "UserManagementController"
        ],
        "responses": {
          "200": {
            "description": "Validate password reset token",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ValidateResetTokenResponse"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ValidateResetToken"
              }
            }
          }
        },
        "operationId": "UserManagementController.validateResetToken"
      }
    },
    "/autoclave-sgvs/count": {
      "get": {
        "x-controller-name": "AutoclaveSgvController",
        "x-operation-name": "count",
        "tags": [
          "AutoclaveSgvController"
        ],
        "responses": {
          "200": {
            "description": "AutoclaveSgv model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AutoclaveSgv.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AutoclaveSgv>"
                }
              }
            }
          }
        ],
        "operationId": "AutoclaveSgvController.count"
      }
    },
    "/autoclave-sgvs/{id}": {
      "put": {
        "x-controller-name": "AutoclaveSgvController",
        "x-operation-name": "replaceById",
        "tags": [
          "AutoclaveSgvController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AutoclaveSgv PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AutoclaveSgv"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AutoclaveSgvController.replaceById"
      },
      "patch": {
        "x-controller-name": "AutoclaveSgvController",
        "x-operation-name": "updateById",
        "tags": [
          "AutoclaveSgvController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AutoclaveSgv PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AutoclaveSgvPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "AutoclaveSgvController.updateById"
      },
      "get": {
        "x-controller-name": "AutoclaveSgvController",
        "x-operation-name": "findById",
        "tags": [
          "AutoclaveSgvController"
        ],
        "responses": {
          "200": {
            "description": "AutoclaveSgv model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AutoclaveSgvWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AutoclaveSgv.Filter"
                }
              }
            }
          }
        ],
        "operationId": "AutoclaveSgvController.findById"
      },
      "delete": {
        "x-controller-name": "AutoclaveSgvController",
        "x-operation-name": "deleteById",
        "tags": [
          "AutoclaveSgvController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AutoclaveSgv DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "AutoclaveSgvController.deleteById"
      }
    },
    "/autoclave-sgvs": {
      "post": {
        "x-controller-name": "AutoclaveSgvController",
        "x-operation-name": "create",
        "tags": [
          "AutoclaveSgvController"
        ],
        "responses": {
          "200": {
            "description": "AutoclaveSgv model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AutoclaveSgv"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewAutoclaveSgv"
              }
            }
          }
        },
        "operationId": "AutoclaveSgvController.create"
      },
      "patch": {
        "x-controller-name": "AutoclaveSgvController",
        "x-operation-name": "updateAll",
        "tags": [
          "AutoclaveSgvController"
        ],
        "responses": {
          "200": {
            "description": "AutoclaveSgv PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "AutoclaveSgv.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<AutoclaveSgv>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AutoclaveSgvPartial"
              }
            }
          }
        },
        "operationId": "AutoclaveSgvController.updateAll"
      },
      "get": {
        "x-controller-name": "AutoclaveSgvController",
        "x-operation-name": "find",
        "tags": [
          "AutoclaveSgvController"
        ],
        "responses": {
          "200": {
            "description": "Array of AutoclaveSgv model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/AutoclaveSgvWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AutoclaveSgv.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "AutoclaveSgvController.find"
      }
    },
    "/contatos/count": {
      "get": {
        "x-controller-name": "ContatoController",
        "x-operation-name": "count",
        "tags": [
          "ContatoController"
        ],
        "responses": {
          "200": {
            "description": "Contato model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Contato.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Contato>"
                }
              }
            }
          }
        ],
        "operationId": "ContatoController.count"
      }
    },
    "/contatos/{id}": {
      "put": {
        "x-controller-name": "ContatoController",
        "x-operation-name": "replaceById",
        "tags": [
          "ContatoController"
        ],
        "responses": {
          "204": {
            "description": "Contato PUT success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Contato"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ContatoController.replaceById"
      },
      "patch": {
        "x-controller-name": "ContatoController",
        "x-operation-name": "updateById",
        "tags": [
          "ContatoController"
        ],
        "responses": {
          "204": {
            "description": "Contato PATCH success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ContatoPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ContatoController.updateById"
      },
      "get": {
        "x-controller-name": "ContatoController",
        "x-operation-name": "findById",
        "tags": [
          "ContatoController"
        ],
        "responses": {
          "200": {
            "description": "Contato model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ContatoWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Contato.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ContatoController.findById"
      },
      "delete": {
        "x-controller-name": "ContatoController",
        "x-operation-name": "deleteById",
        "tags": [
          "ContatoController"
        ],
        "responses": {
          "204": {
            "description": "Contato DELETE success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ContatoController.deleteById"
      }
    },
    "/contatos": {
      "post": {
        "x-controller-name": "ContatoController",
        "x-operation-name": "create",
        "tags": [
          "ContatoController"
        ],
        "responses": {
          "200": {
            "description": "Contato model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Contato"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewContato"
              }
            }
          }
        },
        "operationId": "ContatoController.create"
      },
      "patch": {
        "x-controller-name": "ContatoController",
        "x-operation-name": "updateAll",
        "tags": [
          "ContatoController"
        ],
        "responses": {
          "200": {
            "description": "Contato PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Contato.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Contato>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ContatoPartial"
              }
            }
          }
        },
        "operationId": "ContatoController.updateAll"
      },
      "get": {
        "x-controller-name": "ContatoController",
        "x-operation-name": "find",
        "tags": [
          "ContatoController"
        ],
        "responses": {
          "200": {
            "description": "Array of Contato model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ContatoWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Contato.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "ContatoController.find"
      }
    },
    "/diario-producaos/count": {
      "get": {
        "x-controller-name": "DiarioProducaoController",
        "x-operation-name": "count",
        "tags": [
          "DiarioProducaoController"
        ],
        "responses": {
          "200": {
            "description": "DiarioProducao model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "DiarioProducao.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<DiarioProducao>"
                }
              }
            }
          }
        ],
        "operationId": "DiarioProducaoController.count"
      }
    },
    "/diario-producaos/{id}/estabelecimento": {
      "get": {
        "x-controller-name": "DiarioProducaoEstabelecimentoController",
        "x-operation-name": "getEstabelecimento",
        "tags": [
          "DiarioProducaoEstabelecimentoController"
        ],
        "responses": {
          "200": {
            "description": "Estabelecimento belonging to DiarioProducao",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Estabelecimento"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "DiarioProducaoEstabelecimentoController.getEstabelecimento"
      }
    },
    "/diario-producaos/{id}": {
      "put": {
        "x-controller-name": "DiarioProducaoController",
        "x-operation-name": "replaceById",
        "tags": [
          "DiarioProducaoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DiarioProducao PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DiarioProducao"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DiarioProducaoController.replaceById"
      },
      "patch": {
        "x-controller-name": "DiarioProducaoController",
        "x-operation-name": "updateById",
        "tags": [
          "DiarioProducaoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DiarioProducao PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DiarioProducaoPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "DiarioProducaoController.updateById"
      },
      "get": {
        "x-controller-name": "DiarioProducaoController",
        "x-operation-name": "findById",
        "tags": [
          "DiarioProducaoController"
        ],
        "responses": {
          "200": {
            "description": "DiarioProducao model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DiarioProducaoWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DiarioProducao.Filter"
                }
              }
            }
          }
        ],
        "operationId": "DiarioProducaoController.findById"
      },
      "delete": {
        "x-controller-name": "DiarioProducaoController",
        "x-operation-name": "deleteById",
        "tags": [
          "DiarioProducaoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "DiarioProducao DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "DiarioProducaoController.deleteById"
      }
    },
    "/diario-producaos": {
      "post": {
        "x-controller-name": "DiarioProducaoController",
        "x-operation-name": "create",
        "tags": [
          "DiarioProducaoController"
        ],
        "responses": {
          "200": {
            "description": "DiarioProducao model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DiarioProducao"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewDiarioProducao"
              }
            }
          }
        },
        "operationId": "DiarioProducaoController.create"
      },
      "patch": {
        "x-controller-name": "DiarioProducaoController",
        "x-operation-name": "updateAll",
        "tags": [
          "DiarioProducaoController"
        ],
        "responses": {
          "200": {
            "description": "DiarioProducao PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "DiarioProducao.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<DiarioProducao>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/DiarioProducaoPartial"
              }
            }
          }
        },
        "operationId": "DiarioProducaoController.updateAll"
      },
      "get": {
        "x-controller-name": "DiarioProducaoController",
        "x-operation-name": "find",
        "tags": [
          "DiarioProducaoController"
        ],
        "responses": {
          "200": {
            "description": "Array of DiarioProducao model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/DiarioProducaoWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/DiarioProducao.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "DiarioProducaoController.find"
      }
    },
    "/erp-ordem-servico-etapa-respostas": {
      "post": {
        "x-controller-name": "ErpOrdemServicoEtapaRespostaController",
        "x-operation-name": "create",
        "tags": [
          "ErpOrdemServicoEtapaRespostaController"
        ],
        "responses": {
          "200": {
            "description": "Entrada de respostas de questoes em etapas das ordens de servico pelo ERP/legado",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErpOrdemServicoEtapaResposta"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewErpOrdemServicoEtapaResposta"
              }
            }
          }
        },
        "operationId": "ErpOrdemServicoEtapaRespostaController.create"
      }
    },
    "/erp-ordem-servico-etapas/{id}": {
      "get": {
        "x-controller-name": "ErpOrdemServicoEtapaController",
        "x-operation-name": "findById",
        "tags": [
          "ErpOrdemServicoEtapaController"
        ],
        "responses": {
          "200": {
            "description": "ErpOrdemServicoEtapa model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErpOrdemServicoEtapa"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ErpOrdemServicoEtapaController.findById"
      }
    },
    "/erp-ordem-servico-etapas": {
      "post": {
        "x-controller-name": "ErpOrdemServicoEtapaController",
        "x-operation-name": "create",
        "tags": [
          "ErpOrdemServicoEtapaController"
        ],
        "responses": {
          "200": {
            "description": "Entrada de Etapas de Ordens de Servico pelo ERP/legado",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErpOrdemServicoEtapa"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewErpOrdemServicoEtapa"
              }
            }
          }
        },
        "operationId": "ErpOrdemServicoEtapaController.create"
      }
    },
    "/erp-ordem-servico-retornos/count": {
      "get": {
        "x-controller-name": "ErpOrdemServicoRetornoController",
        "x-operation-name": "count",
        "tags": [
          "ErpOrdemServicoRetornoController"
        ],
        "responses": {
          "200": {
            "description": "ErpOrdemServicoRetorno model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "ErpOrdemServicoRetorno.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<ErpOrdemServicoRetorno>"
                }
              }
            }
          }
        ],
        "operationId": "ErpOrdemServicoRetornoController.count"
      }
    },
    "/erp-ordem-servico-retornos/{id}": {
      "put": {
        "x-controller-name": "ErpOrdemServicoRetornoController",
        "x-operation-name": "replaceById",
        "tags": [
          "ErpOrdemServicoRetornoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ErpOrdemServicoRetorno PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ErpOrdemServicoRetorno"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ErpOrdemServicoRetornoController.replaceById"
      },
      "patch": {
        "x-controller-name": "ErpOrdemServicoRetornoController",
        "x-operation-name": "updateById",
        "tags": [
          "ErpOrdemServicoRetornoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ErpOrdemServicoRetorno PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ErpOrdemServicoRetornoPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ErpOrdemServicoRetornoController.updateById"
      },
      "get": {
        "x-controller-name": "ErpOrdemServicoRetornoController",
        "x-operation-name": "findById",
        "tags": [
          "ErpOrdemServicoRetornoController"
        ],
        "responses": {
          "200": {
            "description": "ErpOrdemServicoRetorno model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErpOrdemServicoRetornoWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErpOrdemServicoRetorno.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ErpOrdemServicoRetornoController.findById"
      },
      "delete": {
        "x-controller-name": "ErpOrdemServicoRetornoController",
        "x-operation-name": "deleteById",
        "tags": [
          "ErpOrdemServicoRetornoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "ErpOrdemServicoRetorno DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ErpOrdemServicoRetornoController.deleteById"
      }
    },
    "/erp-ordem-servico-retornos": {
      "post": {
        "x-controller-name": "ErpOrdemServicoRetornoController",
        "x-operation-name": "create",
        "tags": [
          "ErpOrdemServicoRetornoController"
        ],
        "responses": {
          "200": {
            "description": "ErpOrdemServicoRetorno model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErpOrdemServicoRetorno"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewErpOrdemServicoRetorno"
              }
            }
          }
        },
        "operationId": "ErpOrdemServicoRetornoController.create"
      },
      "patch": {
        "x-controller-name": "ErpOrdemServicoRetornoController",
        "x-operation-name": "updateAll",
        "tags": [
          "ErpOrdemServicoRetornoController"
        ],
        "responses": {
          "200": {
            "description": "ErpOrdemServicoRetorno PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "ErpOrdemServicoRetorno.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<ErpOrdemServicoRetorno>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ErpOrdemServicoRetornoPartial"
              }
            }
          }
        },
        "operationId": "ErpOrdemServicoRetornoController.updateAll"
      },
      "get": {
        "x-controller-name": "ErpOrdemServicoRetornoController",
        "x-operation-name": "find",
        "tags": [
          "ErpOrdemServicoRetornoController"
        ],
        "responses": {
          "200": {
            "description": "Array of ErpOrdemServicoRetorno model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ErpOrdemServicoRetornoWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErpOrdemServicoRetorno.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "ErpOrdemServicoRetornoController.find"
      }
    },
    "/erp-ordem-servicos/importar-de-tenant": {
      "get": {
        "x-controller-name": "ErpOrdemServicoController",
        "x-operation-name": "importarDeOutroTenant",
        "tags": [
          "ErpOrdemServicoController"
        ],
        "responses": {
          "200": {
            "description": "Importar de Tenant",
            "content": {
              "application/json": {}
            }
          }
        },
        "parameters": [
          {
            "name": "estabelecimentoId",
            "in": "query",
            "schema": {
              "type": "number"
            }
          },
          {
            "name": "os",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "prioridade",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "ErpOrdemServicoController.importarDeOutroTenant"
      }
    },
    "/erp-ordem-servicos/{id}": {
      "get": {
        "x-controller-name": "ErpOrdemServicoController",
        "x-operation-name": "findById",
        "tags": [
          "ErpOrdemServicoController"
        ],
        "responses": {
          "200": {
            "description": "ErpOrdemServico model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErpOrdemServico"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ErpOrdemServicoController.findById"
      }
    },
    "/erp-ordem-servicos": {
      "post": {
        "x-controller-name": "ErpOrdemServicoController",
        "x-operation-name": "create",
        "tags": [
          "ErpOrdemServicoController"
        ],
        "responses": {
          "200": {
            "description": "Entrada de Ordens de Servico pelo ERP/legado",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ErpOrdemServico"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewErpOrdemServico"
              }
            }
          }
        },
        "operationId": "ErpOrdemServicoController.create"
      }
    },
    "/estacao-trabalhos/{id}/operador": {
      "get": {
        "x-controller-name": "EstacaoTrabalhoOperadorController",
        "x-operation-name": "getOperador",
        "tags": [
          "EstacaoTrabalhoOperadorController"
        ],
        "responses": {
          "200": {
            "description": "Operador belonging to EstacaoTrabalho",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Operador"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "EstacaoTrabalhoOperadorController.getOperador"
      }
    },
    "/glb-bandas/count": {
      "get": {
        "x-controller-name": "GlbBandaController",
        "x-operation-name": "count",
        "tags": [
          "GlbBandaController"
        ],
        "responses": {
          "200": {
            "description": "GlbBanda model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "GlbBanda.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<GlbBanda>"
                }
              }
            }
          }
        ],
        "operationId": "GlbBandaController.count"
      }
    },
    "/glb-bandas/{id}": {
      "put": {
        "x-controller-name": "GlbBandaController",
        "x-operation-name": "replaceById",
        "tags": [
          "GlbBandaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbBanda PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbBanda"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbBandaController.replaceById"
      },
      "patch": {
        "x-controller-name": "GlbBandaController",
        "x-operation-name": "updateById",
        "tags": [
          "GlbBandaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbBanda PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbBandaPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbBandaController.updateById"
      },
      "get": {
        "x-controller-name": "GlbBandaController",
        "x-operation-name": "findById",
        "tags": [
          "GlbBandaController"
        ],
        "responses": {
          "200": {
            "description": "GlbBanda model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbBandaWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbBanda.Filter"
                }
              }
            }
          }
        ],
        "operationId": "GlbBandaController.findById"
      },
      "delete": {
        "x-controller-name": "GlbBandaController",
        "x-operation-name": "deleteById",
        "tags": [
          "GlbBandaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbBanda DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "GlbBandaController.deleteById"
      }
    },
    "/glb-bandas": {
      "post": {
        "x-controller-name": "GlbBandaController",
        "x-operation-name": "create",
        "tags": [
          "GlbBandaController"
        ],
        "responses": {
          "200": {
            "description": "GlbBanda model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbBanda"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewGlbBanda"
              }
            }
          }
        },
        "operationId": "GlbBandaController.create"
      },
      "patch": {
        "x-controller-name": "GlbBandaController",
        "x-operation-name": "updateAll",
        "tags": [
          "GlbBandaController"
        ],
        "responses": {
          "200": {
            "description": "GlbBanda PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "GlbBanda.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<GlbBanda>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbBandaPartial"
              }
            }
          }
        },
        "operationId": "GlbBandaController.updateAll"
      },
      "get": {
        "x-controller-name": "GlbBandaController",
        "x-operation-name": "find",
        "tags": [
          "GlbBandaController"
        ],
        "responses": {
          "200": {
            "description": "Array of GlbBanda model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GlbBandaWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbBanda.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "GlbBandaController.find"
      }
    },
    "/glb-fabricantes/count": {
      "get": {
        "x-controller-name": "GlbFabricanteController",
        "x-operation-name": "count",
        "tags": [
          "GlbFabricanteController"
        ],
        "responses": {
          "200": {
            "description": "GlbFabricante model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "GlbFabricante.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<GlbFabricante>"
                }
              }
            }
          }
        ],
        "operationId": "GlbFabricanteController.count"
      }
    },
    "/glb-fabricantes/{id}": {
      "put": {
        "x-controller-name": "GlbFabricanteController",
        "x-operation-name": "replaceById",
        "tags": [
          "GlbFabricanteController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbFabricante PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbFabricante"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbFabricanteController.replaceById"
      },
      "patch": {
        "x-controller-name": "GlbFabricanteController",
        "x-operation-name": "updateById",
        "tags": [
          "GlbFabricanteController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbFabricante PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbFabricantePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbFabricanteController.updateById"
      },
      "get": {
        "x-controller-name": "GlbFabricanteController",
        "x-operation-name": "findById",
        "tags": [
          "GlbFabricanteController"
        ],
        "responses": {
          "200": {
            "description": "GlbFabricante model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbFabricanteWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbFabricante.Filter"
                }
              }
            }
          }
        ],
        "operationId": "GlbFabricanteController.findById"
      },
      "delete": {
        "x-controller-name": "GlbFabricanteController",
        "x-operation-name": "deleteById",
        "tags": [
          "GlbFabricanteController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbFabricante DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "GlbFabricanteController.deleteById"
      }
    },
    "/glb-fabricantes": {
      "post": {
        "x-controller-name": "GlbFabricanteController",
        "x-operation-name": "create",
        "tags": [
          "GlbFabricanteController"
        ],
        "responses": {
          "200": {
            "description": "GlbFabricante model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbFabricante"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewGlbFabricante"
              }
            }
          }
        },
        "operationId": "GlbFabricanteController.create"
      },
      "patch": {
        "x-controller-name": "GlbFabricanteController",
        "x-operation-name": "updateAll",
        "tags": [
          "GlbFabricanteController"
        ],
        "responses": {
          "200": {
            "description": "GlbFabricante PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "GlbFabricante.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<GlbFabricante>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbFabricantePartial"
              }
            }
          }
        },
        "operationId": "GlbFabricanteController.updateAll"
      },
      "get": {
        "x-controller-name": "GlbFabricanteController",
        "x-operation-name": "find",
        "tags": [
          "GlbFabricanteController"
        ],
        "responses": {
          "200": {
            "description": "Array of GlbFabricante model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GlbFabricanteWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbFabricante.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "GlbFabricanteController.find"
      }
    },
    "/glb-parametros/{app}/{versaoApp}/{chave}/raw": {
      "patch": {
        "x-controller-name": "GlbParametroController",
        "x-operation-name": "patchRawByCompositeKey",
        "tags": [
          "GlbParametroController"
        ],
        "responses": {
          "200": {
            "description": "Conteúdo raw atualizado (valor2Str)",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "app",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "versaoApp",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "chave",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "GlbParametroController.patchRawByCompositeKey"
      },
      "get": {
        "x-controller-name": "GlbParametroController",
        "x-operation-name": "getRawByCompositeKey",
        "tags": [
          "GlbParametroController"
        ],
        "responses": {
          "200": {
            "description": "Conteúdo raw do GlbParametro (valor2Str) como shell script",
            "content": {
              "text/x-shellscript": {
                "schema": {
                  "type": "string"
                }
              },
              "text/plain": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "app",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "versaoApp",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "chave",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "GlbParametroController.getRawByCompositeKey"
      }
    },
    "/glb-parametros/{app}/{versaoApp}/{chave}": {
      "post": {
        "x-controller-name": "GlbParametroController",
        "x-operation-name": "createByCompositeKey",
        "tags": [
          "GlbParametroController"
        ],
        "responses": {
          "200": {
            "description": "GlbParametro criado",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbParametro"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "app",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "versaoApp",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "chave",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "valor2Str"
                ],
                "properties": {
                  "valor2Str": {
                    "type": "string"
                  }
                }
              }
            }
          },
          "required": true,
          "x-parameter-index": 3
        },
        "operationId": "GlbParametroController.createByCompositeKey"
      },
      "put": {
        "x-controller-name": "GlbParametroController",
        "x-operation-name": "upsertByCompositeKey",
        "tags": [
          "GlbParametroController"
        ],
        "responses": {
          "200": {
            "description": "GlbParametro atualizado/criado (upsert)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbParametro"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "app",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "versaoApp",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "chave",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "valor2Str"
                ],
                "properties": {
                  "valor2Str": {
                    "type": "string"
                  }
                }
              }
            }
          },
          "required": true,
          "x-parameter-index": 3
        },
        "operationId": "GlbParametroController.upsertByCompositeKey"
      },
      "patch": {
        "x-controller-name": "GlbParametroController",
        "x-operation-name": "patchByCompositeKey",
        "tags": [
          "GlbParametroController"
        ],
        "responses": {
          "200": {
            "description": "GlbParametro atualizado parcialmente",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbParametro"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "app",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "versaoApp",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "chave",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "additionalProperties": false,
                "properties": {
                  "valor2Str": {
                    "type": "string"
                  }
                }
              }
            }
          },
          "required": true,
          "x-parameter-index": 3
        },
        "operationId": "GlbParametroController.patchByCompositeKey"
      }
    },
    "/glb-parametros/{id}": {
      "put": {
        "x-controller-name": "GlbParametroController",
        "x-operation-name": "replaceById",
        "tags": [
          "GlbParametroController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbParametro PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbParametro"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbParametroController.replaceById"
      },
      "patch": {
        "x-controller-name": "GlbParametroController",
        "x-operation-name": "updateById",
        "tags": [
          "GlbParametroController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbParametro PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbParametroPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbParametroController.updateById"
      },
      "get": {
        "x-controller-name": "GlbParametroController",
        "x-operation-name": "findById",
        "tags": [
          "GlbParametroController"
        ],
        "responses": {
          "200": {
            "description": "GlbParametro model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbParametroWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbParametro.Filter"
                }
              }
            }
          }
        ],
        "operationId": "GlbParametroController.findById"
      },
      "delete": {
        "x-controller-name": "GlbParametroController",
        "x-operation-name": "deleteById",
        "tags": [
          "GlbParametroController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbParametro DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "GlbParametroController.deleteById"
      }
    },
    "/glb-parametros": {
      "post": {
        "x-controller-name": "GlbParametroController",
        "x-operation-name": "create",
        "tags": [
          "GlbParametroController"
        ],
        "responses": {
          "200": {
            "description": "GlbParametro model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbParametro"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewGlbParametro"
              }
            }
          }
        },
        "operationId": "GlbParametroController.create"
      },
      "get": {
        "x-controller-name": "GlbParametroController",
        "x-operation-name": "find",
        "tags": [
          "GlbParametroController"
        ],
        "responses": {
          "200": {
            "description": "Array of GlbParametro model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GlbParametroWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbParametro.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "GlbParametroController.find"
      }
    },
    "/glb-pneu-medidas/count": {
      "get": {
        "x-controller-name": "GlbPneuMedidaController",
        "x-operation-name": "count",
        "tags": [
          "GlbPneuMedidaController"
        ],
        "responses": {
          "200": {
            "description": "GlbPneuMedida model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "GlbPneuMedida.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<GlbPneuMedida>"
                }
              }
            }
          }
        ],
        "operationId": "GlbPneuMedidaController.count"
      }
    },
    "/glb-pneu-medidas/{id}": {
      "put": {
        "x-controller-name": "GlbPneuMedidaController",
        "x-operation-name": "replaceById",
        "tags": [
          "GlbPneuMedidaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbPneuMedida PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbPneuMedida"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbPneuMedidaController.replaceById"
      },
      "patch": {
        "x-controller-name": "GlbPneuMedidaController",
        "x-operation-name": "updateById",
        "tags": [
          "GlbPneuMedidaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbPneuMedida PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbPneuMedidaPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbPneuMedidaController.updateById"
      },
      "get": {
        "x-controller-name": "GlbPneuMedidaController",
        "x-operation-name": "findById",
        "tags": [
          "GlbPneuMedidaController"
        ],
        "responses": {
          "200": {
            "description": "GlbPneuMedida model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbPneuMedidaWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbPneuMedida.Filter"
                }
              }
            }
          }
        ],
        "operationId": "GlbPneuMedidaController.findById"
      },
      "delete": {
        "x-controller-name": "GlbPneuMedidaController",
        "x-operation-name": "deleteById",
        "tags": [
          "GlbPneuMedidaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbPneuMedida DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "GlbPneuMedidaController.deleteById"
      }
    },
    "/glb-pneu-medidas": {
      "post": {
        "x-controller-name": "GlbPneuMedidaController",
        "x-operation-name": "create",
        "tags": [
          "GlbPneuMedidaController"
        ],
        "responses": {
          "200": {
            "description": "GlbPneuMedida model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbPneuMedida"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewGlbPneuMedida"
              }
            }
          }
        },
        "operationId": "GlbPneuMedidaController.create"
      },
      "patch": {
        "x-controller-name": "GlbPneuMedidaController",
        "x-operation-name": "updateAll",
        "tags": [
          "GlbPneuMedidaController"
        ],
        "responses": {
          "200": {
            "description": "GlbPneuMedida PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "GlbPneuMedida.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<GlbPneuMedida>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbPneuMedidaPartial"
              }
            }
          }
        },
        "operationId": "GlbPneuMedidaController.updateAll"
      },
      "get": {
        "x-controller-name": "GlbPneuMedidaController",
        "x-operation-name": "find",
        "tags": [
          "GlbPneuMedidaController"
        ],
        "responses": {
          "200": {
            "description": "Array of GlbPneuMedida model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GlbPneuMedidaWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbPneuMedida.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "GlbPneuMedidaController.find"
      }
    },
    "/glb-pneu-modelos/count": {
      "get": {
        "x-controller-name": "GlbPneuModeloController",
        "x-operation-name": "count",
        "tags": [
          "GlbPneuModeloController"
        ],
        "responses": {
          "200": {
            "description": "GlbPneuModelo model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "GlbPneuModelo.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<GlbPneuModelo>"
                }
              }
            }
          }
        ],
        "operationId": "GlbPneuModeloController.count"
      }
    },
    "/glb-pneu-modelos/{id}": {
      "put": {
        "x-controller-name": "GlbPneuModeloController",
        "x-operation-name": "replaceById",
        "tags": [
          "GlbPneuModeloController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbPneuModelo PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbPneuModelo"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbPneuModeloController.replaceById"
      },
      "patch": {
        "x-controller-name": "GlbPneuModeloController",
        "x-operation-name": "updateById",
        "tags": [
          "GlbPneuModeloController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbPneuModelo PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbPneuModeloPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbPneuModeloController.updateById"
      },
      "get": {
        "x-controller-name": "GlbPneuModeloController",
        "x-operation-name": "findById",
        "tags": [
          "GlbPneuModeloController"
        ],
        "responses": {
          "200": {
            "description": "GlbPneuModelo model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbPneuModeloWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbPneuModelo.Filter"
                }
              }
            }
          }
        ],
        "operationId": "GlbPneuModeloController.findById"
      },
      "delete": {
        "x-controller-name": "GlbPneuModeloController",
        "x-operation-name": "deleteById",
        "tags": [
          "GlbPneuModeloController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbPneuModelo DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "GlbPneuModeloController.deleteById"
      }
    },
    "/glb-pneu-modelos": {
      "post": {
        "x-controller-name": "GlbPneuModeloController",
        "x-operation-name": "create",
        "tags": [
          "GlbPneuModeloController"
        ],
        "responses": {
          "200": {
            "description": "GlbPneuModelo model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbPneuModelo"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewGlbPneuModelo"
              }
            }
          }
        },
        "operationId": "GlbPneuModeloController.create"
      },
      "patch": {
        "x-controller-name": "GlbPneuModeloController",
        "x-operation-name": "updateAll",
        "tags": [
          "GlbPneuModeloController"
        ],
        "responses": {
          "200": {
            "description": "GlbPneuModelo PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "GlbPneuModelo.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<GlbPneuModelo>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbPneuModeloPartial"
              }
            }
          }
        },
        "operationId": "GlbPneuModeloController.updateAll"
      },
      "get": {
        "x-controller-name": "GlbPneuModeloController",
        "x-operation-name": "find",
        "tags": [
          "GlbPneuModeloController"
        ],
        "responses": {
          "200": {
            "description": "Array of GlbPneuModelo model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GlbPneuModeloWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbPneuModelo.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "GlbPneuModeloController.find"
      }
    },
    "/glb-raspa-receita-categorias/count": {
      "get": {
        "x-controller-name": "GlbRaspaReceitaCategoriaController",
        "x-operation-name": "count",
        "tags": [
          "GlbRaspaReceitaCategoriaController"
        ],
        "responses": {
          "200": {
            "description": "GlbRaspaReceitaCategoria model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "GlbRaspaReceitaCategoria.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<GlbRaspaReceitaCategoria>"
                }
              }
            }
          }
        ],
        "operationId": "GlbRaspaReceitaCategoriaController.count"
      }
    },
    "/glb-raspa-receita-categorias/{id}": {
      "put": {
        "x-controller-name": "GlbRaspaReceitaCategoriaController",
        "x-operation-name": "replaceById",
        "tags": [
          "GlbRaspaReceitaCategoriaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbRaspaReceitaCategoria PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbRaspaReceitaCategoria"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbRaspaReceitaCategoriaController.replaceById"
      },
      "patch": {
        "x-controller-name": "GlbRaspaReceitaCategoriaController",
        "x-operation-name": "updateById",
        "tags": [
          "GlbRaspaReceitaCategoriaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbRaspaReceitaCategoria PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbRaspaReceitaCategoriaPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbRaspaReceitaCategoriaController.updateById"
      },
      "get": {
        "x-controller-name": "GlbRaspaReceitaCategoriaController",
        "x-operation-name": "findById",
        "tags": [
          "GlbRaspaReceitaCategoriaController"
        ],
        "responses": {
          "200": {
            "description": "GlbRaspaReceitaCategoria model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbRaspaReceitaCategoriaWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbRaspaReceitaCategoria.Filter"
                }
              }
            }
          }
        ],
        "operationId": "GlbRaspaReceitaCategoriaController.findById"
      },
      "delete": {
        "x-controller-name": "GlbRaspaReceitaCategoriaController",
        "x-operation-name": "deleteById",
        "tags": [
          "GlbRaspaReceitaCategoriaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbRaspaReceitaCategoria DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "GlbRaspaReceitaCategoriaController.deleteById"
      }
    },
    "/glb-raspa-receita-categorias": {
      "post": {
        "x-controller-name": "GlbRaspaReceitaCategoriaController",
        "x-operation-name": "create",
        "tags": [
          "GlbRaspaReceitaCategoriaController"
        ],
        "responses": {
          "200": {
            "description": "GlbRaspaReceitaCategoria model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbRaspaReceitaCategoria"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewGlbRaspaReceitaCategoria"
              }
            }
          }
        },
        "operationId": "GlbRaspaReceitaCategoriaController.create"
      },
      "patch": {
        "x-controller-name": "GlbRaspaReceitaCategoriaController",
        "x-operation-name": "updateAll",
        "tags": [
          "GlbRaspaReceitaCategoriaController"
        ],
        "responses": {
          "200": {
            "description": "GlbRaspaReceitaCategoria PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "GlbRaspaReceitaCategoria.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<GlbRaspaReceitaCategoria>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbRaspaReceitaCategoriaPartial"
              }
            }
          }
        },
        "operationId": "GlbRaspaReceitaCategoriaController.updateAll"
      },
      "get": {
        "x-controller-name": "GlbRaspaReceitaCategoriaController",
        "x-operation-name": "find",
        "tags": [
          "GlbRaspaReceitaCategoriaController"
        ],
        "responses": {
          "200": {
            "description": "Array of GlbRaspaReceitaCategoria model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GlbRaspaReceitaCategoriaWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbRaspaReceitaCategoria.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "GlbRaspaReceitaCategoriaController.find"
      }
    },
    "/glb-raspa-receita-situacaos/count": {
      "get": {
        "x-controller-name": "GlbRaspaReceitaSituacaoController",
        "x-operation-name": "count",
        "tags": [
          "GlbRaspaReceitaSituacaoController"
        ],
        "responses": {
          "200": {
            "description": "GlbRaspaReceitaSituacao model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "GlbRaspaReceitaSituacao.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<GlbRaspaReceitaSituacao>"
                }
              }
            }
          }
        ],
        "operationId": "GlbRaspaReceitaSituacaoController.count"
      }
    },
    "/glb-raspa-receita-situacaos/{id}": {
      "put": {
        "x-controller-name": "GlbRaspaReceitaSituacaoController",
        "x-operation-name": "replaceById",
        "tags": [
          "GlbRaspaReceitaSituacaoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbRaspaReceitaSituacao PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbRaspaReceitaSituacao"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbRaspaReceitaSituacaoController.replaceById"
      },
      "patch": {
        "x-controller-name": "GlbRaspaReceitaSituacaoController",
        "x-operation-name": "updateById",
        "tags": [
          "GlbRaspaReceitaSituacaoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbRaspaReceitaSituacao PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbRaspaReceitaSituacaoPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "GlbRaspaReceitaSituacaoController.updateById"
      },
      "get": {
        "x-controller-name": "GlbRaspaReceitaSituacaoController",
        "x-operation-name": "findById",
        "tags": [
          "GlbRaspaReceitaSituacaoController"
        ],
        "responses": {
          "200": {
            "description": "GlbRaspaReceitaSituacao model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbRaspaReceitaSituacaoWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbRaspaReceitaSituacao.Filter"
                }
              }
            }
          }
        ],
        "operationId": "GlbRaspaReceitaSituacaoController.findById"
      },
      "delete": {
        "x-controller-name": "GlbRaspaReceitaSituacaoController",
        "x-operation-name": "deleteById",
        "tags": [
          "GlbRaspaReceitaSituacaoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "GlbRaspaReceitaSituacao DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "GlbRaspaReceitaSituacaoController.deleteById"
      }
    },
    "/glb-raspa-receita-situacaos": {
      "post": {
        "x-controller-name": "GlbRaspaReceitaSituacaoController",
        "x-operation-name": "create",
        "tags": [
          "GlbRaspaReceitaSituacaoController"
        ],
        "responses": {
          "200": {
            "description": "GlbRaspaReceitaSituacao model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbRaspaReceitaSituacao"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewGlbRaspaReceitaSituacao"
              }
            }
          }
        },
        "operationId": "GlbRaspaReceitaSituacaoController.create"
      },
      "patch": {
        "x-controller-name": "GlbRaspaReceitaSituacaoController",
        "x-operation-name": "updateAll",
        "tags": [
          "GlbRaspaReceitaSituacaoController"
        ],
        "responses": {
          "200": {
            "description": "GlbRaspaReceitaSituacao PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "GlbRaspaReceitaSituacao.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<GlbRaspaReceitaSituacao>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/GlbRaspaReceitaSituacaoPartial"
              }
            }
          }
        },
        "operationId": "GlbRaspaReceitaSituacaoController.updateAll"
      },
      "get": {
        "x-controller-name": "GlbRaspaReceitaSituacaoController",
        "x-operation-name": "find",
        "tags": [
          "GlbRaspaReceitaSituacaoController"
        ],
        "responses": {
          "200": {
            "description": "Array of GlbRaspaReceitaSituacao model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/GlbRaspaReceitaSituacaoWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GlbRaspaReceitaSituacao.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "GlbRaspaReceitaSituacaoController.find"
      }
    },
    "/glb-raspa-receitas/carrega-mon-perimetro-final-bons/{tenantId}": {
      "post": {
        "x-controller-name": "GlbRaspaReceitaController",
        "x-operation-name": "carregaMonPerimetroFinalBons",
        "tags": [
          "GlbRaspaReceitaController"
        ],
        "responses": {
          "200": {
            "description": "Resultado da carga",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "tenantId",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "GlbRaspaReceitaController.carregaMonPerimetroFinalBons"
      }
    },
    "/health": {
      "get": {
        "x-controller-name": "HealthController",
        "x-operation-name": "health",
        "tags": [
          "HealthController"
        ],
        "responses": {
          "200": {
            "description": "Health check endpoint for AWS Elastic Beanstalk",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "status": {
                      "type": "string"
                    },
                    "uptime": {
                      "type": "number"
                    },
                    "timestamp": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "HealthController.health"
      }
    },
    "/items/count": {
      "get": {
        "x-controller-name": "ItemController",
        "x-operation-name": "count",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "200": {
            "description": "Item model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Item.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Item>"
                }
              }
            }
          }
        ],
        "operationId": "ItemController.count"
      }
    },
    "/items/{id}/banda": {
      "get": {
        "x-controller-name": "ItemBandaController",
        "x-operation-name": "getBanda",
        "tags": [
          "ItemBandaController"
        ],
        "responses": {
          "200": {
            "description": "Banda belonging to Item",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Banda"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ItemBandaController.getBanda"
      }
    },
    "/items/{id}/tipo-item": {
      "get": {
        "x-controller-name": "ItemTipoItemController",
        "x-operation-name": "getTipoItem",
        "tags": [
          "ItemTipoItemController"
        ],
        "responses": {
          "200": {
            "description": "TipoItem belonging to Item",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/TipoItem"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ItemTipoItemController.getTipoItem"
      }
    },
    "/items/{id}": {
      "put": {
        "x-controller-name": "ItemController",
        "x-operation-name": "replaceById",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Item PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Item"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ItemController.replaceById"
      },
      "patch": {
        "x-controller-name": "ItemController",
        "x-operation-name": "updateById",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Item PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ItemPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ItemController.updateById"
      },
      "get": {
        "x-controller-name": "ItemController",
        "x-operation-name": "findById",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "200": {
            "description": "Item model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ItemWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Item.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ItemController.findById"
      },
      "delete": {
        "x-controller-name": "ItemController",
        "x-operation-name": "deleteById",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Item DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ItemController.deleteById"
      }
    },
    "/items": {
      "post": {
        "x-controller-name": "ItemController",
        "x-operation-name": "create",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "200": {
            "description": "Item model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Item"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewItem"
              }
            }
          }
        },
        "operationId": "ItemController.create"
      },
      "patch": {
        "x-controller-name": "ItemController",
        "x-operation-name": "updateAll",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "200": {
            "description": "Item PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Item.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Item>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ItemPartial"
              }
            }
          }
        },
        "operationId": "ItemController.updateAll"
      },
      "get": {
        "x-controller-name": "ItemController",
        "x-operation-name": "find",
        "tags": [
          "ItemController"
        ],
        "responses": {
          "200": {
            "description": "Array of Item model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ItemWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Item.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "ItemController.find"
      }
    },
    "/logintech/senha": {
      "post": {
        "x-controller-name": "LogintechController",
        "x-operation-name": "geraSenha",
        "tags": [
          "LogintechController"
        ],
        "responses": {
          "200": {
            "description": "Gera senha para dispositivo",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "ns",
                  "ran",
                  "adm"
                ],
                "properties": {
                  "ns": {
                    "type": "number"
                  },
                  "ran": {
                    "type": "number"
                  },
                  "adm": {
                    "type": "boolean"
                  }
                }
              }
            }
          }
        },
        "operationId": "LogintechController.geraSenha"
      }
    },
    "/logintech": {
      "post": {
        "x-controller-name": "LogintechController",
        "x-operation-name": "create",
        "tags": [
          "LogintechController"
        ],
        "responses": {
          "200": {
            "description": "Logintech model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LoginTech"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewLoginTech"
              }
            }
          }
        },
        "operationId": "LogintechController.create"
      },
      "get": {
        "x-controller-name": "LogintechController",
        "x-operation-name": "find",
        "tags": [
          "LogintechController"
        ],
        "responses": {
          "200": {
            "description": "Array of logintech model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/LoginTechWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/LoginTech.Filter"
                }
              }
            }
          }
        ],
        "operationId": "LogintechController.find"
      }
    },
    "/logout": {
      "post": {
        "x-controller-name": "LogoutController",
        "x-operation-name": "logout",
        "tags": [
          "LogoutController"
        ],
        "responses": {
          "200": {
            "description": "Return value of LogoutController.logout"
          }
        },
        "parameters": [
          {
            "name": "Authorization",
            "in": "header",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "LogoutController.logout"
      }
    },
    "/meta-categorias/count": {
      "get": {
        "x-controller-name": "MetaCategoriaController",
        "x-operation-name": "count",
        "tags": [
          "MetaCategoriaController"
        ],
        "responses": {
          "200": {
            "description": "MetaCategoria model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "MetaCategoria.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<MetaCategoria>"
                }
              }
            }
          }
        ],
        "operationId": "MetaCategoriaController.count"
      }
    },
    "/meta-categorias/{id}": {
      "put": {
        "x-controller-name": "MetaCategoriaController",
        "x-operation-name": "replaceById",
        "tags": [
          "MetaCategoriaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "MetaCategoria PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MetaCategoria"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MetaCategoriaController.replaceById"
      },
      "patch": {
        "x-controller-name": "MetaCategoriaController",
        "x-operation-name": "updateById",
        "tags": [
          "MetaCategoriaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "MetaCategoria PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MetaCategoriaPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MetaCategoriaController.updateById"
      },
      "get": {
        "x-controller-name": "MetaCategoriaController",
        "x-operation-name": "findById",
        "tags": [
          "MetaCategoriaController"
        ],
        "responses": {
          "200": {
            "description": "MetaCategoria model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MetaCategoriaWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MetaCategoria.Filter"
                }
              }
            }
          }
        ],
        "operationId": "MetaCategoriaController.findById"
      },
      "delete": {
        "x-controller-name": "MetaCategoriaController",
        "x-operation-name": "deleteById",
        "tags": [
          "MetaCategoriaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "MetaCategoria DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "MetaCategoriaController.deleteById"
      }
    },
    "/meta-categorias": {
      "post": {
        "x-controller-name": "MetaCategoriaController",
        "x-operation-name": "create",
        "tags": [
          "MetaCategoriaController"
        ],
        "responses": {
          "200": {
            "description": "MetaCategoria model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MetaCategoria"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewMetaCategoria"
              }
            }
          }
        },
        "operationId": "MetaCategoriaController.create"
      },
      "patch": {
        "x-controller-name": "MetaCategoriaController",
        "x-operation-name": "updateAll",
        "tags": [
          "MetaCategoriaController"
        ],
        "responses": {
          "200": {
            "description": "MetaCategoria PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "MetaCategoria.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<MetaCategoria>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MetaCategoriaPartial"
              }
            }
          }
        },
        "operationId": "MetaCategoriaController.updateAll"
      },
      "get": {
        "x-controller-name": "MetaCategoriaController",
        "x-operation-name": "find",
        "tags": [
          "MetaCategoriaController"
        ],
        "responses": {
          "200": {
            "description": "Array of MetaCategoria model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/MetaCategoriaWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MetaCategoria.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "MetaCategoriaController.find"
      }
    },
    "/metas/count": {
      "get": {
        "x-controller-name": "MetaController",
        "x-operation-name": "count",
        "tags": [
          "MetaController"
        ],
        "responses": {
          "200": {
            "description": "Meta model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Meta.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Meta>"
                }
              }
            }
          }
        ],
        "operationId": "MetaController.count"
      }
    },
    "/metas/periodo": {
      "get": {
        "x-controller-name": "MetaController",
        "x-operation-name": "metaPeriodo",
        "tags": [
          "MetaController"
        ],
        "responses": {
          "200": {
            "description": "Meta periodo model",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "estabelecimentoId",
            "in": "query",
            "schema": {
              "type": "number"
            }
          },
          {
            "name": "intervalo",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "MetaController.metaPeriodo"
      }
    },
    "/metas/{id}/estabelecimento": {
      "get": {
        "x-controller-name": "MetaEstabelecimentoController",
        "x-operation-name": "getEstabelecimento",
        "tags": [
          "MetaEstabelecimentoController"
        ],
        "responses": {
          "200": {
            "description": "Estabelecimento belonging to Meta",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Estabelecimento"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "MetaEstabelecimentoController.getEstabelecimento"
      }
    },
    "/metas/{id}/meta-categoria": {
      "get": {
        "x-controller-name": "MetaMetaCategoriaController",
        "x-operation-name": "getMetaCategoria",
        "tags": [
          "MetaMetaCategoriaController"
        ],
        "responses": {
          "200": {
            "description": "MetaCategoria belonging to Meta",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/MetaCategoria"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "MetaMetaCategoriaController.getMetaCategoria"
      }
    },
    "/metas/{id}": {
      "put": {
        "x-controller-name": "MetaController",
        "x-operation-name": "replaceById",
        "tags": [
          "MetaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Meta PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Meta"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MetaController.replaceById"
      },
      "patch": {
        "x-controller-name": "MetaController",
        "x-operation-name": "updateById",
        "tags": [
          "MetaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Meta PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MetaPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "MetaController.updateById"
      },
      "get": {
        "x-controller-name": "MetaController",
        "x-operation-name": "findById",
        "tags": [
          "MetaController"
        ],
        "responses": {
          "200": {
            "description": "Meta model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/MetaWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Meta.Filter"
                }
              }
            }
          }
        ],
        "operationId": "MetaController.findById"
      },
      "delete": {
        "x-controller-name": "MetaController",
        "x-operation-name": "deleteById",
        "tags": [
          "MetaController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Meta DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "MetaController.deleteById"
      }
    },
    "/metas": {
      "post": {
        "x-controller-name": "MetaController",
        "x-operation-name": "create",
        "tags": [
          "MetaController"
        ],
        "responses": {
          "200": {
            "description": "Meta model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Meta"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewMeta"
              }
            }
          }
        },
        "operationId": "MetaController.create"
      },
      "patch": {
        "x-controller-name": "MetaController",
        "x-operation-name": "updateAll",
        "tags": [
          "MetaController"
        ],
        "responses": {
          "200": {
            "description": "Meta PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Meta.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Meta>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/MetaPartial"
              }
            }
          }
        },
        "operationId": "MetaController.updateAll"
      },
      "get": {
        "x-controller-name": "MetaController",
        "x-operation-name": "find",
        "tags": [
          "MetaController"
        ],
        "responses": {
          "200": {
            "description": "Array of Meta model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/MetaWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Meta.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "MetaController.find"
      }
    },
    "/operador-login-estacaos/count": {
      "get": {
        "x-controller-name": "OperadorLoginEstacaoController",
        "x-operation-name": "count",
        "tags": [
          "OperadorLoginEstacaoController"
        ],
        "responses": {
          "200": {
            "description": "OperadorLoginEstacao model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperadorLoginEstacao.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperadorLoginEstacao>"
                }
              }
            }
          }
        ],
        "operationId": "OperadorLoginEstacaoController.count"
      }
    },
    "/operador-login-estacaos/{id}/estacao-trabalho": {
      "get": {
        "x-controller-name": "OperadorLoginEstacaoEstacaoTrabalhoController",
        "x-operation-name": "getEstacaoTrabalho",
        "tags": [
          "OperadorLoginEstacaoEstacaoTrabalhoController"
        ],
        "responses": {
          "200": {
            "description": "EstacaoTrabalho belonging to OperadorLoginEstacao",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/EstacaoTrabalho"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperadorLoginEstacaoEstacaoTrabalhoController.getEstacaoTrabalho"
      }
    },
    "/operador-login-estacaos/{id}/operador": {
      "get": {
        "x-controller-name": "OperadorLoginEstacaoOperadorController",
        "x-operation-name": "getOperador",
        "tags": [
          "OperadorLoginEstacaoOperadorController"
        ],
        "responses": {
          "200": {
            "description": "Operador belonging to OperadorLoginEstacao",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Operador"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperadorLoginEstacaoOperadorController.getOperador"
      }
    },
    "/operador-login-estacaos/{id}": {
      "put": {
        "x-controller-name": "OperadorLoginEstacaoController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperadorLoginEstacaoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperadorLoginEstacao PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperadorLoginEstacao"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperadorLoginEstacaoController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperadorLoginEstacaoController",
        "x-operation-name": "updateById",
        "tags": [
          "OperadorLoginEstacaoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperadorLoginEstacao PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperadorLoginEstacaoPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperadorLoginEstacaoController.updateById"
      },
      "get": {
        "x-controller-name": "OperadorLoginEstacaoController",
        "x-operation-name": "findById",
        "tags": [
          "OperadorLoginEstacaoController"
        ],
        "responses": {
          "200": {
            "description": "OperadorLoginEstacao model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperadorLoginEstacaoWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperadorLoginEstacao.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperadorLoginEstacaoController.findById"
      },
      "delete": {
        "x-controller-name": "OperadorLoginEstacaoController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperadorLoginEstacaoController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperadorLoginEstacao DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperadorLoginEstacaoController.deleteById"
      }
    },
    "/operador-login-estacaos": {
      "post": {
        "x-controller-name": "OperadorLoginEstacaoController",
        "x-operation-name": "addOLE",
        "tags": [
          "OperadorLoginEstacaoController"
        ],
        "responses": {
          "200": {
            "description": "OperadorLoginEstacao model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperadorLoginEstacao"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewOperadorLoginEstacao"
              }
            }
          }
        },
        "operationId": "OperadorLoginEstacaoController.addOLE"
      },
      "patch": {
        "x-controller-name": "OperadorLoginEstacaoController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperadorLoginEstacaoController"
        ],
        "responses": {
          "200": {
            "description": "OperadorLoginEstacao PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperadorLoginEstacao.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperadorLoginEstacao>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperadorLoginEstacaoPartial"
              }
            }
          }
        },
        "operationId": "OperadorLoginEstacaoController.updateAll"
      },
      "get": {
        "x-controller-name": "OperadorLoginEstacaoController",
        "x-operation-name": "find",
        "tags": [
          "OperadorLoginEstacaoController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperadorLoginEstacao model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperadorLoginEstacaoWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperadorLoginEstacao.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "OperadorLoginEstacaoController.find"
      }
    },
    "/operador-logins/count": {
      "get": {
        "x-controller-name": "OperadorLoginController",
        "x-operation-name": "count",
        "tags": [
          "OperadorLoginController"
        ],
        "responses": {
          "200": {
            "description": "OperadorLogin model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperadorLogin.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperadorLogin>"
                }
              }
            }
          }
        ],
        "operationId": "OperadorLoginController.count"
      }
    },
    "/operador-logins/{id}/operador": {
      "get": {
        "x-controller-name": "OperadorLoginOperadorController",
        "x-operation-name": "getOperador",
        "tags": [
          "OperadorLoginOperadorController"
        ],
        "responses": {
          "200": {
            "description": "Operador belonging to OperadorLogin",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Operador"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperadorLoginOperadorController.getOperador"
      }
    },
    "/operador-logins/{id}": {
      "put": {
        "x-controller-name": "OperadorLoginController",
        "x-operation-name": "replaceById",
        "tags": [
          "OperadorLoginController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperadorLogin PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperadorLogin"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperadorLoginController.replaceById"
      },
      "patch": {
        "x-controller-name": "OperadorLoginController",
        "x-operation-name": "updateById",
        "tags": [
          "OperadorLoginController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperadorLogin PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperadorLoginPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "OperadorLoginController.updateById"
      },
      "get": {
        "x-controller-name": "OperadorLoginController",
        "x-operation-name": "findById",
        "tags": [
          "OperadorLoginController"
        ],
        "responses": {
          "200": {
            "description": "OperadorLogin model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperadorLoginWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperadorLogin.Filter"
                }
              }
            }
          }
        ],
        "operationId": "OperadorLoginController.findById"
      },
      "delete": {
        "x-controller-name": "OperadorLoginController",
        "x-operation-name": "deleteById",
        "tags": [
          "OperadorLoginController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "OperadorLogin DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperadorLoginController.deleteById"
      }
    },
    "/operador-logins": {
      "post": {
        "x-controller-name": "OperadorLoginController",
        "x-operation-name": "create",
        "tags": [
          "OperadorLoginController"
        ],
        "responses": {
          "200": {
            "description": "OperadorLogin model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperadorLogin"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewOperadorLogin"
              }
            }
          }
        },
        "operationId": "OperadorLoginController.create"
      },
      "patch": {
        "x-controller-name": "OperadorLoginController",
        "x-operation-name": "updateAll",
        "tags": [
          "OperadorLoginController"
        ],
        "responses": {
          "200": {
            "description": "OperadorLogin PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "OperadorLogin.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<OperadorLogin>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/OperadorLoginPartial"
              }
            }
          }
        },
        "operationId": "OperadorLoginController.updateAll"
      },
      "get": {
        "x-controller-name": "OperadorLoginController",
        "x-operation-name": "find",
        "tags": [
          "OperadorLoginController"
        ],
        "responses": {
          "200": {
            "description": "Array of OperadorLogin model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/OperadorLoginWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/OperadorLogin.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "OperadorLoginController.find"
      }
    },
    "/operadors/{id}/estabelecimento": {
      "get": {
        "x-controller-name": "OperadorEstabelecimentoController",
        "x-operation-name": "getEstabelecimento",
        "tags": [
          "OperadorEstabelecimentoController"
        ],
        "responses": {
          "200": {
            "description": "Estabelecimento belonging to Operador",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Estabelecimento"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OperadorEstabelecimentoController.getEstabelecimento"
      }
    },
    "/ordem-servicos/{id}/item": {
      "get": {
        "x-controller-name": "OrdemServicoItemController",
        "x-operation-name": "getItem",
        "tags": [
          "OrdemServicoItemController"
        ],
        "responses": {
          "200": {
            "description": "Item belonging to OrdemServico",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Item"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OrdemServicoItemController.getItem"
      }
    },
    "/ordem-servicos/{id}/prioridade": {
      "get": {
        "x-controller-name": "OrdemServicoPrioridadeController",
        "x-operation-name": "getPrioridade",
        "tags": [
          "OrdemServicoPrioridadeController"
        ],
        "responses": {
          "200": {
            "description": "Prioridade belonging to OrdemServico",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Prioridade"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OrdemServicoPrioridadeController.getPrioridade"
      }
    },
    "/ordem-servicos/{id}/servico": {
      "get": {
        "x-controller-name": "OrdemServicoServicoController",
        "x-operation-name": "getServico",
        "tags": [
          "OrdemServicoServicoController"
        ],
        "responses": {
          "200": {
            "description": "Servico belonging to OrdemServico",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Servico"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "OrdemServicoServicoController.getServico"
      }
    },
    "/parametros/{area}/{setor}/{estacao}": {
      "get": {
        "x-controller-name": "ParametroController",
        "x-operation-name": "getByAreaSetorEstacao",
        "tags": [
          "ParametroController"
        ],
        "responses": {
          "200": {
            "description": "Parametro model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ParametroWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "area",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "setor",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "estacao",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Parametro.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ParametroController.getByAreaSetorEstacao"
      }
    },
    "/parametros/{app}/{param}": {
      "get": {
        "x-controller-name": "ParametroController",
        "x-operation-name": "getAppParam",
        "tags": [
          "ParametroController"
        ],
        "responses": {
          "200": {
            "description": "Parametro model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ParametroWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "app",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "param",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Parametro.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ParametroController.getAppParam"
      }
    },
    "/parametros/{id}": {
      "put": {
        "x-controller-name": "ParametroController",
        "x-operation-name": "replaceById",
        "tags": [
          "ParametroController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Parametro PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Parametro"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ParametroController.replaceById"
      },
      "patch": {
        "x-controller-name": "ParametroController",
        "x-operation-name": "updateById",
        "tags": [
          "ParametroController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Parametro PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/ParametroPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "ParametroController.updateById"
      },
      "get": {
        "x-controller-name": "ParametroController",
        "x-operation-name": "findById",
        "tags": [
          "ParametroController"
        ],
        "responses": {
          "200": {
            "description": "Parametro model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/ParametroWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Parametro.Filter"
                }
              }
            }
          }
        ],
        "operationId": "ParametroController.findById"
      },
      "delete": {
        "x-controller-name": "ParametroController",
        "x-operation-name": "deleteById",
        "tags": [
          "ParametroController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Parametro DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ParametroController.deleteById"
      }
    },
    "/parametros": {
      "post": {
        "x-controller-name": "ParametroController",
        "x-operation-name": "create",
        "tags": [
          "ParametroController"
        ],
        "responses": {
          "200": {
            "description": "Parametro model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Parametro"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewParametro"
              }
            }
          }
        },
        "operationId": "ParametroController.create"
      },
      "get": {
        "x-controller-name": "ParametroController",
        "x-operation-name": "find",
        "tags": [
          "ParametroController"
        ],
        "responses": {
          "200": {
            "description": "Array of Parametro model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/ParametroWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Parametro.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "ParametroController.find"
      }
    },
    "/prioridades/count": {
      "get": {
        "x-controller-name": "PrioridadeController",
        "x-operation-name": "count",
        "tags": [
          "PrioridadeController"
        ],
        "responses": {
          "200": {
            "description": "Prioridade model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Prioridade.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Prioridade>"
                }
              }
            }
          }
        ],
        "operationId": "PrioridadeController.count"
      }
    },
    "/prioridades/{id}": {
      "put": {
        "x-controller-name": "PrioridadeController",
        "x-operation-name": "replaceById",
        "tags": [
          "PrioridadeController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Prioridade PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Prioridade"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "PrioridadeController.replaceById"
      },
      "patch": {
        "x-controller-name": "PrioridadeController",
        "x-operation-name": "updateById",
        "tags": [
          "PrioridadeController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Prioridade PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PrioridadePartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "PrioridadeController.updateById"
      },
      "get": {
        "x-controller-name": "PrioridadeController",
        "x-operation-name": "findById",
        "tags": [
          "PrioridadeController"
        ],
        "responses": {
          "200": {
            "description": "Prioridade model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PrioridadeWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Prioridade.Filter"
                }
              }
            }
          }
        ],
        "operationId": "PrioridadeController.findById"
      },
      "delete": {
        "x-controller-name": "PrioridadeController",
        "x-operation-name": "deleteById",
        "tags": [
          "PrioridadeController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Prioridade DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "PrioridadeController.deleteById"
      }
    },
    "/prioridades": {
      "post": {
        "x-controller-name": "PrioridadeController",
        "x-operation-name": "create",
        "tags": [
          "PrioridadeController"
        ],
        "responses": {
          "200": {
            "description": "Prioridade model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Prioridade"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewPrioridade"
              }
            }
          }
        },
        "operationId": "PrioridadeController.create"
      },
      "patch": {
        "x-controller-name": "PrioridadeController",
        "x-operation-name": "updateAll",
        "tags": [
          "PrioridadeController"
        ],
        "responses": {
          "200": {
            "description": "Prioridade PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Prioridade.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Prioridade>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/PrioridadePartial"
              }
            }
          }
        },
        "operationId": "PrioridadeController.updateAll"
      },
      "get": {
        "x-controller-name": "PrioridadeController",
        "x-operation-name": "find",
        "tags": [
          "PrioridadeController"
        ],
        "responses": {
          "200": {
            "description": "Array of Prioridade model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/PrioridadeWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Prioridade.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "PrioridadeController.find"
      }
    },
    "/processo-etapas/{id}/etapa": {
      "get": {
        "x-controller-name": "ProcessoEtapaEtapaController",
        "x-operation-name": "getEtapa",
        "tags": [
          "ProcessoEtapaEtapaController"
        ],
        "responses": {
          "200": {
            "description": "Etapa belonging to ProcessoEtapa",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Etapa"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "ProcessoEtapaEtapaController.getEtapa"
      }
    },
    "/raspa-ciclo-serras/count": {
      "get": {
        "x-controller-name": "RaspaCicloSerraController",
        "x-operation-name": "count",
        "tags": [
          "RaspaCicloSerraController"
        ],
        "responses": {
          "200": {
            "description": "RaspaCicloSerra model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "RaspaCicloSerra.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<RaspaCicloSerra>"
                }
              }
            }
          }
        ],
        "operationId": "RaspaCicloSerraController.count"
      }
    },
    "/raspa-ciclo-serras/{id}": {
      "put": {
        "x-controller-name": "RaspaCicloSerraController",
        "x-operation-name": "replaceById",
        "tags": [
          "RaspaCicloSerraController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "RaspaCicloSerra PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RaspaCicloSerra"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "RaspaCicloSerraController.replaceById"
      },
      "patch": {
        "x-controller-name": "RaspaCicloSerraController",
        "x-operation-name": "updateById",
        "tags": [
          "RaspaCicloSerraController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "RaspaCicloSerra PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RaspaCicloSerraPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "RaspaCicloSerraController.updateById"
      },
      "get": {
        "x-controller-name": "RaspaCicloSerraController",
        "x-operation-name": "findById",
        "tags": [
          "RaspaCicloSerraController"
        ],
        "responses": {
          "200": {
            "description": "RaspaCicloSerra model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RaspaCicloSerraWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RaspaCicloSerra.Filter"
                }
              }
            }
          }
        ],
        "operationId": "RaspaCicloSerraController.findById"
      },
      "delete": {
        "x-controller-name": "RaspaCicloSerraController",
        "x-operation-name": "deleteById",
        "tags": [
          "RaspaCicloSerraController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "RaspaCicloSerra DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "RaspaCicloSerraController.deleteById"
      }
    },
    "/raspa-ciclo-serras": {
      "post": {
        "x-controller-name": "RaspaCicloSerraController",
        "x-operation-name": "create",
        "tags": [
          "RaspaCicloSerraController"
        ],
        "responses": {
          "200": {
            "description": "RaspaCicloSerra model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RaspaCicloSerra"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewRaspaCicloSerra"
              }
            }
          }
        },
        "operationId": "RaspaCicloSerraController.create"
      },
      "patch": {
        "x-controller-name": "RaspaCicloSerraController",
        "x-operation-name": "updateAll",
        "tags": [
          "RaspaCicloSerraController"
        ],
        "responses": {
          "200": {
            "description": "RaspaCicloSerra PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "RaspaCicloSerra.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<RaspaCicloSerra>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RaspaCicloSerraPartial"
              }
            }
          }
        },
        "operationId": "RaspaCicloSerraController.updateAll"
      },
      "get": {
        "x-controller-name": "RaspaCicloSerraController",
        "x-operation-name": "find",
        "tags": [
          "RaspaCicloSerraController"
        ],
        "responses": {
          "200": {
            "description": "Array of RaspaCicloSerra model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RaspaCicloSerraWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RaspaCicloSerra.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "RaspaCicloSerraController.find"
      }
    },
    "/roitread-ciclo-estados/{id}/roitread-estado": {
      "get": {
        "x-controller-name": "RoitreadCicloEstadoRoitreadEstadoController",
        "x-operation-name": "getRoitreadEstado",
        "tags": [
          "RoitreadCicloEstadoRoitreadEstadoController"
        ],
        "responses": {
          "200": {
            "description": "RoitreadEstado belonging to RoitreadCicloEstado",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RoitreadEstado"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "RoitreadCicloEstadoRoitreadEstadoController.getRoitreadEstado"
      }
    },
    "/roitread-ciclos/count": {
      "get": {
        "x-controller-name": "RoitreadCicloController",
        "x-operation-name": "count",
        "tags": [
          "RoitreadCicloController"
        ],
        "responses": {
          "200": {
            "description": "RoitreadCiclo model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "RoitreadCiclo.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<RoitreadCiclo>"
                }
              }
            }
          }
        ],
        "operationId": "RoitreadCicloController.count"
      }
    },
    "/roitread-ciclos/{id}/estabelecimento": {
      "get": {
        "x-controller-name": "RoitreadCicloEstabelecimentoController",
        "x-operation-name": "getEstabelecimento",
        "tags": [
          "RoitreadCicloEstabelecimentoController"
        ],
        "responses": {
          "200": {
            "description": "Estabelecimento belonging to RoitreadCiclo",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Estabelecimento"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "RoitreadCicloEstabelecimentoController.getEstabelecimento"
      }
    },
    "/roitread-ciclos/{id}/operador": {
      "get": {
        "x-controller-name": "RoitreadCicloOperadorController",
        "x-operation-name": "getOperador",
        "tags": [
          "RoitreadCicloOperadorController"
        ],
        "responses": {
          "200": {
            "description": "Operador belonging to RoitreadCiclo",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Operador"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "RoitreadCicloOperadorController.getOperador"
      }
    },
    "/roitread-ciclos/{id}/roitread-ciclo-estados": {
      "post": {
        "x-controller-name": "RoitreadCicloRoitreadCicloEstadoController",
        "x-operation-name": "create",
        "tags": [
          "RoitreadCicloRoitreadCicloEstadoController"
        ],
        "responses": {
          "200": {
            "description": "RoitreadCicloEstado model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RoitreadCicloEstado"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {}
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "RoitreadCicloRoitreadCicloEstadoController.create"
      },
      "patch": {
        "x-controller-name": "RoitreadCicloRoitreadCicloEstadoController",
        "x-operation-name": "patch",
        "tags": [
          "RoitreadCicloRoitreadCicloEstadoController"
        ],
        "responses": {
          "200": {
            "description": "RoitreadCiclo.RoitreadCicloEstado PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "RoitreadCicloEstado.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<RoitreadCicloEstado>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RoitreadCicloEstadoPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "RoitreadCicloRoitreadCicloEstadoController.patch"
      },
      "get": {
        "x-controller-name": "RoitreadCicloRoitreadCicloEstadoController",
        "x-operation-name": "find",
        "tags": [
          "RoitreadCicloRoitreadCicloEstadoController"
        ],
        "responses": {
          "200": {
            "description": "Array of RoitreadCiclo has many RoitreadCicloEstado",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RoitreadCicloEstado"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "RoitreadCicloRoitreadCicloEstadoController.find"
      },
      "delete": {
        "x-controller-name": "RoitreadCicloRoitreadCicloEstadoController",
        "x-operation-name": "delete",
        "tags": [
          "RoitreadCicloRoitreadCicloEstadoController"
        ],
        "responses": {
          "200": {
            "description": "RoitreadCiclo.RoitreadCicloEstado DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "RoitreadCicloEstado.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<RoitreadCicloEstado>"
                }
              }
            }
          }
        ],
        "operationId": "RoitreadCicloRoitreadCicloEstadoController.delete"
      }
    },
    "/roitread-ciclos/{id}": {
      "put": {
        "x-controller-name": "RoitreadCicloController",
        "x-operation-name": "replaceById",
        "tags": [
          "RoitreadCicloController"
        ],
        "responses": {
          "204": {
            "description": "RoitreadCiclo PUT success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RoitreadCiclo"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "RoitreadCicloController.replaceById"
      },
      "patch": {
        "x-controller-name": "RoitreadCicloController",
        "x-operation-name": "updateById",
        "tags": [
          "RoitreadCicloController"
        ],
        "responses": {
          "204": {
            "description": "RoitreadCiclo PATCH success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RoitreadCicloPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "RoitreadCicloController.updateById"
      },
      "get": {
        "x-controller-name": "RoitreadCicloController",
        "x-operation-name": "findById",
        "tags": [
          "RoitreadCicloController"
        ],
        "responses": {
          "200": {
            "description": "RoitreadCiclo model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RoitreadCicloWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RoitreadCiclo.Filter"
                }
              }
            }
          }
        ],
        "operationId": "RoitreadCicloController.findById"
      },
      "delete": {
        "x-controller-name": "RoitreadCicloController",
        "x-operation-name": "deleteById",
        "tags": [
          "RoitreadCicloController"
        ],
        "responses": {
          "204": {
            "description": "RoitreadCiclo DELETE success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "RoitreadCicloController.deleteById"
      }
    },
    "/roitread-ciclos": {
      "post": {
        "x-controller-name": "RoitreadCicloController",
        "x-operation-name": "create",
        "tags": [
          "RoitreadCicloController"
        ],
        "responses": {
          "200": {
            "description": "RoitreadCiclo model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RoitreadCiclo"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewRoitreadCiclo"
              }
            }
          }
        },
        "operationId": "RoitreadCicloController.create"
      },
      "patch": {
        "x-controller-name": "RoitreadCicloController",
        "x-operation-name": "updateAll",
        "tags": [
          "RoitreadCicloController"
        ],
        "responses": {
          "200": {
            "description": "RoitreadCiclo PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "RoitreadCiclo.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<RoitreadCiclo>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RoitreadCicloPartial"
              }
            }
          }
        },
        "operationId": "RoitreadCicloController.updateAll"
      },
      "get": {
        "x-controller-name": "RoitreadCicloController",
        "x-operation-name": "find",
        "tags": [
          "RoitreadCicloController"
        ],
        "responses": {
          "200": {
            "description": "Array of RoitreadCiclo model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RoitreadCicloWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RoitreadCiclo.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "RoitreadCicloController.find"
      }
    },
    "/roitreads/count": {
      "get": {
        "x-controller-name": "RoitreadController",
        "x-operation-name": "count",
        "tags": [
          "RoitreadController"
        ],
        "responses": {
          "200": {
            "description": "Roitread model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Roitread.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Roitread>"
                }
              }
            }
          }
        ],
        "operationId": "RoitreadController.count"
      }
    },
    "/roitreads/{id}/estabelecimento": {
      "get": {
        "x-controller-name": "RoitreadEstabelecimentoController",
        "x-operation-name": "getEstabelecimento",
        "tags": [
          "RoitreadEstabelecimentoController"
        ],
        "responses": {
          "200": {
            "description": "Estabelecimento belonging to Roitread",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Estabelecimento"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "RoitreadEstabelecimentoController.getEstabelecimento"
      }
    },
    "/roitreads/{id}/roitread-ciclos": {
      "post": {
        "x-controller-name": "RoitreadRoitreadCicloController",
        "x-operation-name": "create",
        "tags": [
          "RoitreadRoitreadCicloController"
        ],
        "responses": {
          "200": {
            "description": "Roitread model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RoitreadCiclo"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewRoitreadCicloInRoitread"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "RoitreadRoitreadCicloController.create"
      },
      "patch": {
        "x-controller-name": "RoitreadRoitreadCicloController",
        "x-operation-name": "patch",
        "tags": [
          "RoitreadRoitreadCicloController"
        ],
        "responses": {
          "200": {
            "description": "Roitread.RoitreadCiclo PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "RoitreadCiclo.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<RoitreadCiclo>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RoitreadCicloPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "RoitreadRoitreadCicloController.patch"
      },
      "get": {
        "x-controller-name": "RoitreadRoitreadCicloController",
        "x-operation-name": "find",
        "tags": [
          "RoitreadRoitreadCicloController"
        ],
        "responses": {
          "200": {
            "description": "Array of Roitread has many RoitreadCiclo",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RoitreadCiclo"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "RoitreadRoitreadCicloController.find"
      },
      "delete": {
        "x-controller-name": "RoitreadRoitreadCicloController",
        "x-operation-name": "delete",
        "tags": [
          "RoitreadRoitreadCicloController"
        ],
        "responses": {
          "200": {
            "description": "Roitread.RoitreadCiclo DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "RoitreadCiclo.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<RoitreadCiclo>"
                }
              }
            }
          }
        ],
        "operationId": "RoitreadRoitreadCicloController.delete"
      }
    },
    "/roitreads/{id}": {
      "put": {
        "x-controller-name": "RoitreadController",
        "x-operation-name": "replaceById",
        "tags": [
          "RoitreadController"
        ],
        "responses": {
          "204": {
            "description": "Roitread PUT success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Roitread"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "RoitreadController.replaceById"
      },
      "patch": {
        "x-controller-name": "RoitreadController",
        "x-operation-name": "updateById",
        "tags": [
          "RoitreadController"
        ],
        "responses": {
          "204": {
            "description": "Roitread PATCH success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RoitreadPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "RoitreadController.updateById"
      },
      "get": {
        "x-controller-name": "RoitreadController",
        "x-operation-name": "findById",
        "tags": [
          "RoitreadController"
        ],
        "responses": {
          "200": {
            "description": "Roitread model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/RoitreadWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Roitread.Filter"
                }
              }
            }
          }
        ],
        "operationId": "RoitreadController.findById"
      },
      "delete": {
        "x-controller-name": "RoitreadController",
        "x-operation-name": "deleteById",
        "tags": [
          "RoitreadController"
        ],
        "responses": {
          "204": {
            "description": "Roitread DELETE success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "RoitreadController.deleteById"
      }
    },
    "/roitreads": {
      "post": {
        "x-controller-name": "RoitreadController",
        "x-operation-name": "create",
        "tags": [
          "RoitreadController"
        ],
        "responses": {
          "200": {
            "description": "Roitread model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Roitread"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewRoitread"
              }
            }
          }
        },
        "operationId": "RoitreadController.create"
      },
      "patch": {
        "x-controller-name": "RoitreadController",
        "x-operation-name": "updateAll",
        "tags": [
          "RoitreadController"
        ],
        "responses": {
          "200": {
            "description": "Roitread PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Roitread.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Roitread>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/RoitreadPartial"
              }
            }
          }
        },
        "operationId": "RoitreadController.updateAll"
      },
      "get": {
        "x-controller-name": "RoitreadController",
        "x-operation-name": "find",
        "tags": [
          "RoitreadController"
        ],
        "responses": {
          "200": {
            "description": "Array of Roitread model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/RoitreadWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Roitread.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "RoitreadController.find"
      }
    },
    "/situacao-os/count": {
      "get": {
        "x-controller-name": "SituacaoOsController",
        "x-operation-name": "count",
        "tags": [
          "SituacaoOsController"
        ],
        "responses": {
          "200": {
            "description": "SituacaoOs model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "SituacaoOs.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<SituacaoOs>"
                }
              }
            }
          }
        ],
        "operationId": "SituacaoOsController.count"
      }
    },
    "/situacao-os/{id}": {
      "put": {
        "x-controller-name": "SituacaoOsController",
        "x-operation-name": "replaceById",
        "tags": [
          "SituacaoOsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "SituacaoOs PUT success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SituacaoOs"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SituacaoOsController.replaceById"
      },
      "patch": {
        "x-controller-name": "SituacaoOsController",
        "x-operation-name": "updateById",
        "tags": [
          "SituacaoOsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "SituacaoOs PATCH success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SituacaoOsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "SituacaoOsController.updateById"
      },
      "get": {
        "x-controller-name": "SituacaoOsController",
        "x-operation-name": "findById",
        "tags": [
          "SituacaoOsController"
        ],
        "responses": {
          "200": {
            "description": "SituacaoOs model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SituacaoOsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SituacaoOs.Filter"
                }
              }
            }
          }
        ],
        "operationId": "SituacaoOsController.findById"
      },
      "delete": {
        "x-controller-name": "SituacaoOsController",
        "x-operation-name": "deleteById",
        "tags": [
          "SituacaoOsController"
        ],
        "responses": {
          "204": {
            "description": "No Content",
            "content": {
              "application/json": {
                "schema": {
                  "description": "SituacaoOs DELETE success"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "SituacaoOsController.deleteById"
      }
    },
    "/situacao-os": {
      "post": {
        "x-controller-name": "SituacaoOsController",
        "x-operation-name": "create",
        "tags": [
          "SituacaoOsController"
        ],
        "responses": {
          "200": {
            "description": "SituacaoOs model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SituacaoOs"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewSituacaoOs"
              }
            }
          }
        },
        "operationId": "SituacaoOsController.create"
      },
      "patch": {
        "x-controller-name": "SituacaoOsController",
        "x-operation-name": "updateAll",
        "tags": [
          "SituacaoOsController"
        ],
        "responses": {
          "200": {
            "description": "SituacaoOs PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "SituacaoOs.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<SituacaoOs>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/SituacaoOsPartial"
              }
            }
          }
        },
        "operationId": "SituacaoOsController.updateAll"
      },
      "get": {
        "x-controller-name": "SituacaoOsController",
        "x-operation-name": "find",
        "tags": [
          "SituacaoOsController"
        ],
        "responses": {
          "200": {
            "description": "Array of SituacaoOs model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SituacaoOsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/SituacaoOs.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "SituacaoOsController.find"
      }
    },
    "/status-ordem-servicos/{id}/situacao-os": {
      "get": {
        "x-controller-name": "StatusOrdemServicoSituacaoOsController",
        "x-operation-name": "getSituacaoOs",
        "tags": [
          "StatusOrdemServicoSituacaoOsController"
        ],
        "responses": {
          "200": {
            "description": "SituacaoOs belonging to StatusOrdemServico",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/SituacaoOs"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "StatusOrdemServicoSituacaoOsController.getSituacaoOs"
      }
    },
    "/tags/count": {
      "get": {
        "x-controller-name": "TagController",
        "x-operation-name": "count",
        "tags": [
          "TagController"
        ],
        "responses": {
          "200": {
            "description": "Tag model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Tag.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Tag>"
                }
              }
            }
          }
        ],
        "operationId": "TagController.count"
      }
    },
    "/tags/{id}": {
      "put": {
        "x-controller-name": "TagController",
        "x-operation-name": "replaceById",
        "tags": [
          "TagController"
        ],
        "responses": {
          "204": {
            "description": "Tag PUT success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Tag"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "TagController.replaceById"
      },
      "patch": {
        "x-controller-name": "TagController",
        "x-operation-name": "updateById",
        "tags": [
          "TagController"
        ],
        "responses": {
          "204": {
            "description": "Tag PATCH success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TagPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "TagController.updateById"
      },
      "get": {
        "x-controller-name": "TagController",
        "x-operation-name": "findById",
        "tags": [
          "TagController"
        ],
        "responses": {
          "200": {
            "description": "Tag model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TagWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Tag.Filter"
                }
              }
            }
          }
        ],
        "operationId": "TagController.findById"
      },
      "delete": {
        "x-controller-name": "TagController",
        "x-operation-name": "deleteById",
        "tags": [
          "TagController"
        ],
        "responses": {
          "204": {
            "description": "Tag DELETE success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "TagController.deleteById"
      }
    },
    "/tags": {
      "post": {
        "x-controller-name": "TagController",
        "x-operation-name": "create",
        "tags": [
          "TagController"
        ],
        "responses": {
          "200": {
            "description": "Tag model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Tag"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewTag"
              }
            }
          }
        },
        "operationId": "TagController.create"
      },
      "patch": {
        "x-controller-name": "TagController",
        "x-operation-name": "updateAll",
        "tags": [
          "TagController"
        ],
        "responses": {
          "200": {
            "description": "Tag PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Tag.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Tag>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TagPartial"
              }
            }
          }
        },
        "operationId": "TagController.updateAll"
      },
      "get": {
        "x-controller-name": "TagController",
        "x-operation-name": "find",
        "tags": [
          "TagController"
        ],
        "responses": {
          "200": {
            "description": "Array of Tag model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/TagWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Tag.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "TagController.find"
      }
    },
    "/tests/count": {
      "get": {
        "x-controller-name": "TestController",
        "x-operation-name": "count",
        "tags": [
          "TestController"
        ],
        "responses": {
          "200": {
            "description": "Test model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Test.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Test>"
                }
              }
            }
          }
        ],
        "operationId": "TestController.count"
      }
    },
    "/tests/{id}": {
      "put": {
        "x-controller-name": "TestController",
        "x-operation-name": "replaceById",
        "tags": [
          "TestController"
        ],
        "responses": {
          "204": {
            "description": "Test PUT success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/Test"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "TestController.replaceById"
      },
      "patch": {
        "x-controller-name": "TestController",
        "x-operation-name": "updateById",
        "tags": [
          "TestController"
        ],
        "responses": {
          "204": {
            "description": "Test PATCH success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TestPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "TestController.updateById"
      },
      "get": {
        "x-controller-name": "TestController",
        "x-operation-name": "findById",
        "tags": [
          "TestController"
        ],
        "responses": {
          "200": {
            "description": "Test model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Test"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "TestController.findById"
      },
      "delete": {
        "x-controller-name": "TestController",
        "x-operation-name": "deleteById",
        "tags": [
          "TestController"
        ],
        "responses": {
          "204": {
            "description": "Test DELETE success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "TestController.deleteById"
      }
    },
    "/tests": {
      "post": {
        "x-controller-name": "TestController",
        "x-operation-name": "create",
        "tags": [
          "TestController"
        ],
        "responses": {
          "200": {
            "description": "Test model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Test"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewTest"
              }
            }
          }
        },
        "operationId": "TestController.create"
      },
      "patch": {
        "x-controller-name": "TestController",
        "x-operation-name": "updateAll",
        "tags": [
          "TestController"
        ],
        "responses": {
          "200": {
            "description": "Test PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "Test.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<Test>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TestPartial"
              }
            }
          }
        },
        "operationId": "TestController.updateAll"
      },
      "get": {
        "x-controller-name": "TestController",
        "x-operation-name": "find",
        "tags": [
          "TestController"
        ],
        "responses": {
          "200": {
            "description": "Array of Test model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/Test"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Test.Filter"
                }
              }
            }
          }
        ],
        "operationId": "TestController.find"
      }
    },
    "/thot/autoclaves-monitor": {
      "get": {
        "x-controller-name": "ThotController",
        "x-operation-name": "tenantAutoclaveMonitor",
        "tags": [
          "ThotController"
        ],
        "responses": {
          "200": {
            "description": "Thot i4 monitor",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "tntId",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "ThotController.tenantAutoclaveMonitor"
      }
    },
    "/thot/i4monitor": {
      "get": {
        "x-controller-name": "ThotController",
        "x-operation-name": "i4monitor",
        "tags": [
          "ThotController"
        ],
        "responses": {
          "200": {
            "description": "Thot i4 monitor",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "intervalo",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "ThotController.i4monitor"
      }
    },
    "/tipo-tags/count": {
      "get": {
        "x-controller-name": "TipoTagController",
        "x-operation-name": "count",
        "tags": [
          "TipoTagController"
        ],
        "responses": {
          "200": {
            "description": "TipoTag model count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "TipoTag.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<TipoTag>"
                }
              }
            }
          }
        ],
        "operationId": "TipoTagController.count"
      }
    },
    "/tipo-tags/{id}": {
      "put": {
        "x-controller-name": "TipoTagController",
        "x-operation-name": "replaceById",
        "tags": [
          "TipoTagController"
        ],
        "responses": {
          "204": {
            "description": "TipoTag PUT success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TipoTag"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "TipoTagController.replaceById"
      },
      "patch": {
        "x-controller-name": "TipoTagController",
        "x-operation-name": "updateById",
        "tags": [
          "TipoTagController"
        ],
        "responses": {
          "204": {
            "description": "TipoTag PATCH success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TipoTagPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "TipoTagController.updateById"
      },
      "get": {
        "x-controller-name": "TipoTagController",
        "x-operation-name": "findById",
        "tags": [
          "TipoTagController"
        ],
        "responses": {
          "200": {
            "description": "TipoTag model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TipoTagWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TipoTag.Filter"
                }
              }
            }
          }
        ],
        "operationId": "TipoTagController.findById"
      },
      "delete": {
        "x-controller-name": "TipoTagController",
        "x-operation-name": "deleteById",
        "tags": [
          "TipoTagController"
        ],
        "responses": {
          "204": {
            "description": "TipoTag DELETE success"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "TipoTagController.deleteById"
      }
    },
    "/tipo-tags": {
      "post": {
        "x-controller-name": "TipoTagController",
        "x-operation-name": "create",
        "tags": [
          "TipoTagController"
        ],
        "responses": {
          "200": {
            "description": "TipoTag model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TipoTag"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/NewTipoTag"
              }
            }
          }
        },
        "operationId": "TipoTagController.create"
      },
      "patch": {
        "x-controller-name": "TipoTagController",
        "x-operation-name": "updateAll",
        "tags": [
          "TipoTagController"
        ],
        "responses": {
          "200": {
            "description": "TipoTag PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/loopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "TipoTag.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<TipoTag>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/TipoTagPartial"
              }
            }
          }
        },
        "operationId": "TipoTagController.updateAll"
      },
      "get": {
        "x-controller-name": "TipoTagController",
        "x-operation-name": "find",
        "tags": [
          "TipoTagController"
        ],
        "responses": {
          "200": {
            "description": "Array of TipoTag model instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/TipoTagWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/TipoTag.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "TipoTagController.find"
      }
    },
    "/users/create-full": {
      "post": {
        "x-controller-name": "UserManagementController",
        "x-operation-name": "createFull",
        "tags": [
          "UserManagementController"
        ],
        "responses": {
          "200": {
            "description": "User model instance (full creation with credentials and tenant)",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/User"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/CreateFullUser"
              }
            }
          }
        },
        "operationId": "UserManagementController.createFull"
      }
    },
    "/users/{id}/admin-change-password": {
      "post": {
        "x-controller-name": "UserManagementController",
        "x-operation-name": "adminChangePassword",
        "tags": [
          "UserManagementController"
        ],
        "responses": {
          "200": {
            "description": "Admin change password success",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/AdminChangePasswordResponse"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/AdminChangePassword"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "UserManagementController.adminChangePassword"
      }
    },
    "/users/{id}/generate-reset-link": {
      "post": {
        "x-controller-name": "UserManagementController",
        "x-operation-name": "generateResetLink",
        "tags": [
          "UserManagementController"
        ],
        "responses": {
          "200": {
            "description": "Generate password reset link",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/GenerateResetLinkResponse"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "UserManagementController.generateResetLink"
      }
    },
    "/": {
      "get": {
        "x-controller-name": "HomePageController",
        "x-operation-name": "homePage",
        "tags": [
          "HomePageController"
        ],
        "responses": {
          "200": {
            "description": "Home Page",
            "content": {
              "text/html": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        },
        "operationId": "HomePageController.homePage"
      }
    }
  },
  "components": {
    "securitySchemes": {
      "bearerAuth": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      },
      "jwt": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    },
    "schemas": {
      "User": {
        "title": "User",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "createdBy": {
            "type": "number"
          },
          "modifiedBy": {
            "type": "number"
          },
          "id": {
            "type": "number"
          },
          "firstName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "middleName": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "email": {
            "type": "string"
          },
          "phone": {
            "type": "string"
          },
          "defaultTenant": {
            "type": "number"
          },
          "lastLogin": {
            "type": "string",
            "format": "date-time"
          },
          "minIAT": {
            "type": "number"
          },
          "thotTenants": {
            "type": "string"
          }
        },
        "required": [
          "firstName",
          "username"
        ],
        "additionalProperties": false
      },
      "TipoTag": {
        "title": "TipoTag",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewTipoTag": {
        "title": "NewTipoTag",
        "type": "object",
        "description": "(tsType: Omit<TipoTag, 'id'>, schemaOptions: { title: 'NewTipoTag', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<TipoTag, 'id'>"
      },
      "TipoTagWithRelations": {
        "title": "TipoTagWithRelations",
        "type": "object",
        "description": "(tsType: TipoTagWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "TipoTagWithRelations"
      },
      "TipoTagPartial": {
        "title": "TipoTagPartial",
        "type": "object",
        "description": "(tsType: Partial<TipoTag>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<TipoTag>"
      },
      "Test": {
        "title": "Test",
        "type": "object",
        "properties": {
          "id": {
            "type": "string"
          },
          "Descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewTest": {
        "title": "NewTest",
        "type": "object",
        "description": "(tsType: Omit<Test, 'id'>, schemaOptions: { title: 'NewTest', exclude: [ 'id' ] })",
        "properties": {
          "Descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Test, 'id'>"
      },
      "TestPartial": {
        "title": "TestPartial",
        "type": "object",
        "description": "(tsType: Partial<Test>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "string"
          },
          "Descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Test>"
      },
      "Tag": {
        "title": "Tag",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "codigo": {
            "type": "string"
          },
          "simbolo": {
            "type": "string"
          },
          "descricao": {
            "type": "string"
          },
          "acaoTecnico": {
            "type": "string"
          },
          "tipoTagId": {
            "type": "number"
          },
          "modeloCLP": {
            "type": "string"
          },
          "tipoVariavelLeitura": {
            "type": "number"
          },
          "fonteLeituraEnderecoCLP": {
            "type": "number"
          },
          "enderecoCLPst": {
            "type": "string"
          },
          "enderecoCLPint": {
            "type": "string"
          },
          "enderecoCLPBit": {
            "type": "string"
          },
          "posicaoBitClp": {
            "type": "number"
          },
          "tipoPropriedadeEscrita": {
            "type": "number",
            "description": "1: integer; 2: float; 3: string; 4: boolean"
          },
          "ondeGravar": {
            "type": "number",
            "description": "1:Gravar em coluna separada, 2:Gravar como propriedade json em Tags"
          },
          "propriedade": {
            "type": "string",
            "description": "Nome da Propriedade do modelo json"
          },
          "multiplicaPor": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewTag": {
        "title": "NewTag",
        "type": "object",
        "description": "(tsType: Omit<Tag, 'id'>, schemaOptions: { title: 'NewTag', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "codigo": {
            "type": "string"
          },
          "simbolo": {
            "type": "string"
          },
          "descricao": {
            "type": "string"
          },
          "acaoTecnico": {
            "type": "string"
          },
          "tipoTagId": {
            "type": "number"
          },
          "modeloCLP": {
            "type": "string"
          },
          "tipoVariavelLeitura": {
            "type": "number"
          },
          "fonteLeituraEnderecoCLP": {
            "type": "number"
          },
          "enderecoCLPst": {
            "type": "string"
          },
          "enderecoCLPint": {
            "type": "string"
          },
          "enderecoCLPBit": {
            "type": "string"
          },
          "posicaoBitClp": {
            "type": "number"
          },
          "tipoPropriedadeEscrita": {
            "type": "number",
            "description": "1: integer; 2: float; 3: string; 4: boolean"
          },
          "ondeGravar": {
            "type": "number",
            "description": "1:Gravar em coluna separada, 2:Gravar como propriedade json em Tags"
          },
          "propriedade": {
            "type": "string",
            "description": "Nome da Propriedade do modelo json"
          },
          "multiplicaPor": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Tag, 'id'>"
      },
      "TagWithRelations": {
        "title": "TagWithRelations",
        "type": "object",
        "description": "(tsType: TagWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "codigo": {
            "type": "string"
          },
          "simbolo": {
            "type": "string"
          },
          "descricao": {
            "type": "string"
          },
          "acaoTecnico": {
            "type": "string"
          },
          "tipoTagId": {
            "type": "number"
          },
          "modeloCLP": {
            "type": "string"
          },
          "tipoVariavelLeitura": {
            "type": "number"
          },
          "fonteLeituraEnderecoCLP": {
            "type": "number"
          },
          "enderecoCLPst": {
            "type": "string"
          },
          "enderecoCLPint": {
            "type": "string"
          },
          "enderecoCLPBit": {
            "type": "string"
          },
          "posicaoBitClp": {
            "type": "number"
          },
          "tipoPropriedadeEscrita": {
            "type": "number",
            "description": "1: integer; 2: float; 3: string; 4: boolean"
          },
          "ondeGravar": {
            "type": "number",
            "description": "1:Gravar em coluna separada, 2:Gravar como propriedade json em Tags"
          },
          "propriedade": {
            "type": "string",
            "description": "Nome da Propriedade do modelo json"
          },
          "multiplicaPor": {
            "type": "number"
          },
          "tipoTag": {
            "$ref": "#/components/schemas/TipoTagWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "TagWithRelations"
      },
      "TagPartial": {
        "title": "TagPartial",
        "type": "object",
        "description": "(tsType: Partial<Tag>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "codigo": {
            "type": "string"
          },
          "simbolo": {
            "type": "string"
          },
          "descricao": {
            "type": "string"
          },
          "acaoTecnico": {
            "type": "string"
          },
          "tipoTagId": {
            "type": "number"
          },
          "modeloCLP": {
            "type": "string"
          },
          "tipoVariavelLeitura": {
            "type": "number"
          },
          "fonteLeituraEnderecoCLP": {
            "type": "number"
          },
          "enderecoCLPst": {
            "type": "string"
          },
          "enderecoCLPint": {
            "type": "string"
          },
          "enderecoCLPBit": {
            "type": "string"
          },
          "posicaoBitClp": {
            "type": "number"
          },
          "tipoPropriedadeEscrita": {
            "type": "number",
            "description": "1: integer; 2: float; 3: string; 4: boolean"
          },
          "ondeGravar": {
            "type": "number",
            "description": "1:Gravar em coluna separada, 2:Gravar como propriedade json em Tags"
          },
          "propriedade": {
            "type": "string",
            "description": "Nome da Propriedade do modelo json"
          },
          "multiplicaPor": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Tag>"
      },
      "SituacaoOs": {
        "title": "SituacaoOs",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewSituacaoOs": {
        "title": "NewSituacaoOs",
        "type": "object",
        "description": "(tsType: Omit<SituacaoOs, 'id'>, schemaOptions: { title: 'NewSituacaoOs', exclude: [ 'id' ] })",
        "properties": {
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<SituacaoOs, 'id'>"
      },
      "SituacaoOsWithRelations": {
        "title": "SituacaoOsWithRelations",
        "type": "object",
        "description": "(tsType: SituacaoOsWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "SituacaoOsWithRelations"
      },
      "SituacaoOsPartial": {
        "title": "SituacaoOsPartial",
        "type": "object",
        "description": "(tsType: Partial<SituacaoOs>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<SituacaoOs>"
      },
      "Processo": {
        "title": "Processo",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "etapaInicial": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "Banda": {
        "title": "Banda",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "bandaFabricanteId": {
            "type": "number"
          },
          "glbBandaId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "Roitread": {
        "title": "Roitread",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewRoitread": {
        "title": "NewRoitread",
        "type": "object",
        "description": "(tsType: Omit<Roitread, 'id'>, schemaOptions: { title: 'NewRoitread', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Roitread, 'id'>"
      },
      "RoitreadEstadoWithRelations": {
        "title": "RoitreadEstadoWithRelations",
        "type": "object",
        "description": "(tsType: RoitreadEstadoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "RoitreadEstadoWithRelations"
      },
      "RoitreadCicloEstadoWithRelations": {
        "title": "RoitreadCicloEstadoWithRelations",
        "type": "object",
        "description": "(tsType: RoitreadCicloEstadoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "tempoSec": {
            "type": "number"
          },
          "estabId": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "roitreadCicloId": {
            "type": "number"
          },
          "dt": {
            "type": "string",
            "format": "date-time"
          },
          "roitreadId": {
            "type": "number"
          },
          "roitreadEstadoId": {
            "type": "number"
          },
          "roitreadEstado": {
            "$ref": "#/components/schemas/RoitreadEstadoWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "RoitreadCicloEstadoWithRelations"
      },
      "TerminalProducaoWithRelations": {
        "title": "TerminalProducaoWithRelations",
        "type": "object",
        "description": "(tsType: TerminalProducaoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "numSerie": {
            "type": "string"
          },
          "macAddress": {
            "type": "string"
          },
          "ipAddress": {
            "type": "string"
          },
          "numLinhas": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "estabelecimento": {
            "$ref": "#/components/schemas/EstabelecimentoWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "TerminalProducaoWithRelations"
      },
      "EstabelecimentoWithRelations": {
        "title": "EstabelecimentoWithRelations",
        "type": "object",
        "description": "(tsType: EstabelecimentoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "cargaHorariaDia": {
            "type": "number"
          },
          "i4Planta": {
            "type": "boolean"
          },
          "adicionarMinImportacaoDT": {
            "type": "number"
          },
          "etapasPorProcesso": {
            "type": "boolean"
          },
          "processoPadrao": {
            "type": "string"
          },
          "timezone": {
            "type": "string"
          },
          "utcDiff": {
            "type": "string"
          },
          "minVulcParaCicloAutoclaveValido": {
            "type": "number"
          },
          "usarCreatedOnParaOSDTChegadaImportacao": {
            "type": "boolean"
          },
          "permiteImportarTenantNumero": {
            "type": "number"
          },
          "permiteImportarTenantEstabelecimentoId": {
            "type": "number"
          },
          "estabelecimentoTipoId": {
            "type": "number"
          },
          "terminalProducaos": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/TerminalProducaoWithRelations"
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "EstabelecimentoWithRelations"
      },
      "OperadorWithRelations": {
        "title": "OperadorWithRelations",
        "type": "object",
        "description": "(tsType: OperadorWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "nome": {
            "type": "string"
          },
          "abreviatura": {
            "type": "string"
          },
          "alertaAposXHoras": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "estabelecimento": {
            "$ref": "#/components/schemas/EstabelecimentoWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "OperadorWithRelations"
      },
      "RoitreadCicloWithRelations": {
        "title": "RoitreadCicloWithRelations",
        "type": "object",
        "description": "(tsType: RoitreadCicloWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "geralEmergencia": {
            "type": "boolean"
          },
          "DTInicioCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "ciclo": {
            "type": "number"
          },
          "posicao": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "os": {
            "type": "string"
          },
          "extrusoraLargura": {
            "type": "number"
          },
          "extrusoraDTInicioCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "extrusoraDTFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "teveExtrusao": {
            "type": "boolean"
          },
          "teveEnchimento": {
            "type": "boolean"
          },
          "extrusoraCiclo": {
            "type": "number"
          },
          "extrusoraConsumo": {
            "type": "number"
          },
          "tempoAnteriorExtrusaoSec": {
            "type": "number"
          },
          "tempoAplicacaoBandaSec": {
            "type": "number"
          },
          "tempoRoletagemSec": {
            "type": "number"
          },
          "tempoExtrusaoSec": {
            "type": "number"
          },
          "tempoOutrosSec": {
            "type": "number"
          },
          "roitreadId": {
            "type": "number"
          },
          "loteEnchimento": {
            "type": "string"
          },
          "codValidacao": {
            "type": "number"
          },
          "codEanBanda": {
            "type": "string"
          },
          "codNSBanda": {
            "type": "string"
          },
          "operadorId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "roitreadCicloEstados": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RoitreadCicloEstadoWithRelations"
            }
          },
          "operador": {
            "$ref": "#/components/schemas/OperadorWithRelations"
          },
          "foreignKey": {},
          "estabelecimento": {
            "$ref": "#/components/schemas/EstabelecimentoWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "RoitreadCicloWithRelations"
      },
      "RoitreadWithRelations": {
        "title": "RoitreadWithRelations",
        "type": "object",
        "description": "(tsType: RoitreadWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "roitreadCiclos": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RoitreadCicloWithRelations"
            }
          },
          "estabelecimento": {
            "$ref": "#/components/schemas/EstabelecimentoWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "RoitreadWithRelations"
      },
      "RoitreadPartial": {
        "title": "RoitreadPartial",
        "type": "object",
        "description": "(tsType: Partial<Roitread>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Roitread>"
      },
      "RoitreadCiclo": {
        "title": "RoitreadCiclo",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "geralEmergencia": {
            "type": "boolean"
          },
          "DTInicioCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "ciclo": {
            "type": "number"
          },
          "posicao": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "os": {
            "type": "string"
          },
          "extrusoraLargura": {
            "type": "number"
          },
          "extrusoraDTInicioCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "extrusoraDTFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "teveExtrusao": {
            "type": "boolean"
          },
          "teveEnchimento": {
            "type": "boolean"
          },
          "extrusoraCiclo": {
            "type": "number"
          },
          "extrusoraConsumo": {
            "type": "number"
          },
          "tempoAnteriorExtrusaoSec": {
            "type": "number"
          },
          "tempoAplicacaoBandaSec": {
            "type": "number"
          },
          "tempoRoletagemSec": {
            "type": "number"
          },
          "tempoExtrusaoSec": {
            "type": "number"
          },
          "tempoOutrosSec": {
            "type": "number"
          },
          "roitreadId": {
            "type": "number"
          },
          "loteEnchimento": {
            "type": "string"
          },
          "codValidacao": {
            "type": "number"
          },
          "codEanBanda": {
            "type": "string"
          },
          "codNSBanda": {
            "type": "string"
          },
          "operadorId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewRoitreadCicloInRoitread": {
        "title": "NewRoitreadCicloInRoitread",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<RoitreadCiclo, 'id'>, 'roitreadId'>, schemaOptions: { title: 'NewRoitreadCicloInRoitread', exclude: [ 'id' ], optional: [ 'roitreadId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "geralEmergencia": {
            "type": "boolean"
          },
          "DTInicioCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "ciclo": {
            "type": "number"
          },
          "posicao": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "os": {
            "type": "string"
          },
          "extrusoraLargura": {
            "type": "number"
          },
          "extrusoraDTInicioCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "extrusoraDTFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "teveExtrusao": {
            "type": "boolean"
          },
          "teveEnchimento": {
            "type": "boolean"
          },
          "extrusoraCiclo": {
            "type": "number"
          },
          "extrusoraConsumo": {
            "type": "number"
          },
          "tempoAnteriorExtrusaoSec": {
            "type": "number"
          },
          "tempoAplicacaoBandaSec": {
            "type": "number"
          },
          "tempoRoletagemSec": {
            "type": "number"
          },
          "tempoExtrusaoSec": {
            "type": "number"
          },
          "tempoOutrosSec": {
            "type": "number"
          },
          "roitreadId": {
            "type": "number"
          },
          "loteEnchimento": {
            "type": "string"
          },
          "codValidacao": {
            "type": "number"
          },
          "codEanBanda": {
            "type": "string"
          },
          "codNSBanda": {
            "type": "string"
          },
          "operadorId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<RoitreadCiclo, 'id'>, 'roitreadId'>"
      },
      "RoitreadCicloPartial": {
        "title": "RoitreadCicloPartial",
        "type": "object",
        "description": "(tsType: Partial<RoitreadCiclo>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "geralEmergencia": {
            "type": "boolean"
          },
          "DTInicioCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "ciclo": {
            "type": "number"
          },
          "posicao": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "os": {
            "type": "string"
          },
          "extrusoraLargura": {
            "type": "number"
          },
          "extrusoraDTInicioCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "extrusoraDTFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "teveExtrusao": {
            "type": "boolean"
          },
          "teveEnchimento": {
            "type": "boolean"
          },
          "extrusoraCiclo": {
            "type": "number"
          },
          "extrusoraConsumo": {
            "type": "number"
          },
          "tempoAnteriorExtrusaoSec": {
            "type": "number"
          },
          "tempoAplicacaoBandaSec": {
            "type": "number"
          },
          "tempoRoletagemSec": {
            "type": "number"
          },
          "tempoExtrusaoSec": {
            "type": "number"
          },
          "tempoOutrosSec": {
            "type": "number"
          },
          "roitreadId": {
            "type": "number"
          },
          "loteEnchimento": {
            "type": "string"
          },
          "codValidacao": {
            "type": "number"
          },
          "codEanBanda": {
            "type": "string"
          },
          "codNSBanda": {
            "type": "string"
          },
          "operadorId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<RoitreadCiclo>"
      },
      "Estabelecimento": {
        "title": "Estabelecimento",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "cargaHorariaDia": {
            "type": "number"
          },
          "i4Planta": {
            "type": "boolean"
          },
          "adicionarMinImportacaoDT": {
            "type": "number"
          },
          "etapasPorProcesso": {
            "type": "boolean"
          },
          "processoPadrao": {
            "type": "string"
          },
          "timezone": {
            "type": "string"
          },
          "utcDiff": {
            "type": "string"
          },
          "minVulcParaCicloAutoclaveValido": {
            "type": "number"
          },
          "usarCreatedOnParaOSDTChegadaImportacao": {
            "type": "boolean"
          },
          "permiteImportarTenantNumero": {
            "type": "number"
          },
          "permiteImportarTenantEstabelecimentoId": {
            "type": "number"
          },
          "estabelecimentoTipoId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewRoitreadCiclo": {
        "title": "NewRoitreadCiclo",
        "type": "object",
        "description": "(tsType: Omit<RoitreadCiclo, 'id'>, schemaOptions: { title: 'NewRoitreadCiclo', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "geralEmergencia": {
            "type": "boolean"
          },
          "DTInicioCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "ciclo": {
            "type": "number"
          },
          "posicao": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "os": {
            "type": "string"
          },
          "extrusoraLargura": {
            "type": "number"
          },
          "extrusoraDTInicioCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "extrusoraDTFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "teveExtrusao": {
            "type": "boolean"
          },
          "teveEnchimento": {
            "type": "boolean"
          },
          "extrusoraCiclo": {
            "type": "number"
          },
          "extrusoraConsumo": {
            "type": "number"
          },
          "tempoAnteriorExtrusaoSec": {
            "type": "number"
          },
          "tempoAplicacaoBandaSec": {
            "type": "number"
          },
          "tempoRoletagemSec": {
            "type": "number"
          },
          "tempoExtrusaoSec": {
            "type": "number"
          },
          "tempoOutrosSec": {
            "type": "number"
          },
          "roitreadId": {
            "type": "number"
          },
          "loteEnchimento": {
            "type": "string"
          },
          "codValidacao": {
            "type": "number"
          },
          "codEanBanda": {
            "type": "string"
          },
          "codNSBanda": {
            "type": "string"
          },
          "operadorId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<RoitreadCiclo, 'id'>"
      },
      "GlbFabricanteWithRelations": {
        "title": "GlbFabricanteWithRelations",
        "type": "object",
        "description": "(tsType: GlbFabricanteWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "glbPneuModelos": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/GlbPneuModeloWithRelations"
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "GlbFabricanteWithRelations"
      },
      "GlbPneuModeloWithRelations": {
        "title": "GlbPneuModeloWithRelations",
        "type": "object",
        "description": "(tsType: GlbPneuModeloWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "glbFabricanteId": {
            "type": "number"
          },
          "glbFabricante": {
            "$ref": "#/components/schemas/GlbFabricanteWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "GlbPneuModeloWithRelations"
      },
      "GlbPneuMedidaWithRelations": {
        "title": "GlbPneuMedidaWithRelations",
        "type": "object",
        "description": "(tsType: GlbPneuMedidaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "largura": {
            "type": "number"
          },
          "raio": {
            "type": "number"
          },
          "construcao": {
            "type": "string"
          },
          "diametro": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "GlbPneuMedidaWithRelations"
      },
      "GlbBandaWithRelations": {
        "title": "GlbBandaWithRelations",
        "type": "object",
        "description": "(tsType: GlbBandaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "largurasDisponiveis": {
            "type": "string"
          },
          "glbFabricanteId": {
            "type": "number"
          },
          "glbFabricante": {
            "$ref": "#/components/schemas/GlbFabricanteWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "GlbBandaWithRelations"
      },
      "GlbRaspaReceitaCategoriaWithRelations": {
        "title": "GlbRaspaReceitaCategoriaWithRelations",
        "type": "object",
        "description": "(tsType: GlbRaspaReceitaCategoriaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "GlbRaspaReceitaCategoriaWithRelations"
      },
      "GlbRaspaReceitaSituacaoWithRelations": {
        "title": "GlbRaspaReceitaSituacaoWithRelations",
        "type": "object",
        "description": "(tsType: GlbRaspaReceitaSituacaoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "GlbRaspaReceitaSituacaoWithRelations"
      },
      "GlbRaspaReceitaWithRelations": {
        "title": "GlbRaspaReceitaWithRelations",
        "type": "object",
        "description": "(tsType: GlbRaspaReceitaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "larguraRaspagem": {
            "type": "number"
          },
          "larguraBanda": {
            "type": "number"
          },
          "vidaPneuRaspagem": {
            "type": "number"
          },
          "raioRaspagem": {
            "type": "number"
          },
          "perimetro": {
            "type": "number"
          },
          "anguloOmbro": {
            "type": "number"
          },
          "comprimentoOmbro": {
            "type": "number"
          },
          "raioOmbro": {
            "type": "number"
          },
          "receitaMensagem": {
            "type": "string"
          },
          "usuarioCriador": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "monPerimetroFinalBons": {
            "type": "string"
          },
          "glbPneuModeloId": {
            "type": "number"
          },
          "glbPneuMedidaId": {
            "type": "number"
          },
          "glbBandaId": {
            "type": "number"
          },
          "glbRaspaReceitaCategoriaId": {
            "type": "number"
          },
          "glbRaspaReceitaSituacaoId": {
            "type": "number"
          },
          "contadorRaspagens": {
            "type": "number"
          },
          "contadorPneusBons": {
            "type": "number"
          },
          "contadorPneusRegular": {
            "type": "number"
          },
          "contadorPneusRuins": {
            "type": "number"
          },
          "glbPneuModelo": {
            "$ref": "#/components/schemas/GlbPneuModeloWithRelations"
          },
          "foreignKey": {},
          "glbPneuMedida": {
            "$ref": "#/components/schemas/GlbPneuMedidaWithRelations"
          },
          "glbBanda": {
            "$ref": "#/components/schemas/GlbBandaWithRelations"
          },
          "glbRaspaReceitaCategoria": {
            "$ref": "#/components/schemas/GlbRaspaReceitaCategoriaWithRelations"
          },
          "glbRaspaReceitaSituacao": {
            "$ref": "#/components/schemas/GlbRaspaReceitaSituacaoWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "GlbRaspaReceitaWithRelations"
      },
      "RaspaAlarmeWithRelations": {
        "title": "RaspaAlarmeWithRelations",
        "type": "object",
        "description": "(tsType: RaspaAlarmeWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "mensagem": {
            "type": "string"
          },
          "localId": {
            "type": "number"
          },
          "index": {
            "type": "number"
          },
          "usuario": {
            "type": "string"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "RaspaAlarmeWithRelations"
      },
      "RaspaCicloSerraWithRelations": {
        "title": "RaspaCicloSerraWithRelations",
        "type": "object",
        "description": "(tsType: RaspaCicloSerraWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "cicloId": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "qtdePneus": {
            "type": "number"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "dataFinal": {
            "type": "string",
            "format": "date-time"
          },
          "contadorSerra": {
            "type": "number"
          },
          "contadorPneusInicial": {
            "type": "number"
          },
          "contadorPneusFinal": {
            "type": "number"
          },
          "milimetrosRaspados": {
            "type": "number"
          },
          "Fabricante": {
            "type": "string"
          },
          "usuario": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "numCiclosDB": {
            "type": "number"
          },
          "numCiclosValidos": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          },
          "raspa": {
            "$ref": "#/components/schemas/RaspaWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "RaspaCicloSerraWithRelations"
      },
      "RaspaLoginWithRelations": {
        "title": "RaspaLoginWithRelations",
        "type": "object",
        "description": "(tsType: RaspaLoginWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "usuario": {
            "type": "string"
          },
          "login": {
            "type": "string",
            "format": "date-time"
          },
          "logout": {
            "type": "string",
            "format": "date-time"
          },
          "localId": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "RaspaLoginWithRelations"
      },
      "RaspaWithRelations": {
        "title": "RaspaWithRelations",
        "type": "object",
        "description": "(tsType: RaspaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "raspaCiclos": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RaspaCicloWithRelations"
            }
          },
          "raspaAlarmes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RaspaAlarmeWithRelations"
            }
          },
          "raspaCicloSerras": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RaspaCicloSerraWithRelations"
            }
          },
          "raspaLogins": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/RaspaLoginWithRelations"
            }
          },
          "estabelecimento": {
            "$ref": "#/components/schemas/EstabelecimentoWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "RaspaWithRelations"
      },
      "PneuFabricanteWithRelations": {
        "title": "PneuFabricanteWithRelations",
        "type": "object",
        "description": "(tsType: PneuFabricanteWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "glbFabricanteId": {
            "type": "number"
          },
          "glbFabricante": {
            "$ref": "#/components/schemas/GlbFabricanteWithRelations"
          },
          "foreignKey": {},
          "pneuModelos": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/PneuModeloWithRelations"
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "PneuFabricanteWithRelations"
      },
      "PneuModeloWithRelations": {
        "title": "PneuModeloWithRelations",
        "type": "object",
        "description": "(tsType: PneuModeloWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "pneuFabricanteId": {
            "type": "number"
          },
          "glbPneuModeloId": {
            "type": "number"
          },
          "pneuFabricante": {
            "$ref": "#/components/schemas/PneuFabricanteWithRelations"
          },
          "foreignKey": {},
          "glbPneuModelo": {
            "$ref": "#/components/schemas/GlbPneuModeloWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "PneuModeloWithRelations"
      },
      "BandaWithRelations": {
        "title": "BandaWithRelations",
        "type": "object",
        "description": "(tsType: BandaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "bandaFabricanteId": {
            "type": "number"
          },
          "glbBandaId": {
            "type": "number"
          },
          "glbBanda": {
            "$ref": "#/components/schemas/GlbBandaWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "BandaWithRelations"
      },
      "ProcessoEtapaQuestaoRespostaWithRelations": {
        "title": "ProcessoEtapaQuestaoRespostaWithRelations",
        "type": "object",
        "description": "(tsType: ProcessoEtapaQuestaoRespostaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "sequencia": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "respostaColetor": {
            "type": "string"
          },
          "vaParaEtapa": {
            "type": "number"
          },
          "vaParaPergunta": {
            "type": "number"
          },
          "triggerFuncao": {
            "type": "string"
          },
          "triggerFuncaoParametro": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "triggerSQL": {
            "type": "string"
          },
          "processoEtapaQuestaoId": {
            "type": "number"
          },
          "processoEtapaQuestao": {
            "$ref": "#/components/schemas/ProcessoEtapaQuestaoWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "ProcessoEtapaQuestaoRespostaWithRelations"
      },
      "ProcessoEtapaQuestaoWithRelations": {
        "title": "ProcessoEtapaQuestaoWithRelations",
        "type": "object",
        "description": "(tsType: ProcessoEtapaQuestaoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "pergunta": {
            "type": "string"
          },
          "perguntaAbreviada": {
            "type": "string"
          },
          "triggerTEDCarrega": {
            "type": "string"
          },
          "triggerTEDValidacao": {
            "type": "string"
          },
          "triggerTEDProcessa": {
            "type": "string"
          },
          "tipoPergunta": {
            "type": "number"
          },
          "tipoResposta": {
            "type": "number",
            "description": "1- numerica; 2-alfanumerica; 3-sim/nao (1/2); 4-lista alternativas 6-string"
          },
          "ehObrigatoria": {
            "type": "boolean"
          },
          "triggerFuncaoPre": {
            "type": "string",
            "description": "Nome da trigger para disparar antes da pergunta"
          },
          "triggerFuncao": {
            "type": "string",
            "description": "Nome da trigger para disparar com a resposta"
          },
          "sequencia": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "loopPergunta": {
            "type": "boolean"
          },
          "usarDefaultUltimaResposta": {
            "type": "boolean"
          },
          "controlaItem": {
            "type": "number",
            "description": "Cod Item para controlar quantidade utilizada de cada opcao/codigoBarras"
          },
          "limitaItemUso": {
            "type": "number",
            "description": "limita utilizacao do item.codgigoBarras a X em uso por vez. No caso, envelopes, inners,..."
          },
          "processoEtapaId": {
            "type": "number"
          },
          "processoEtapa": {
            "$ref": "#/components/schemas/ProcessoEtapaWithRelations"
          },
          "foreignKey": {},
          "processoEtapaQuestaoRespostas": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProcessoEtapaQuestaoRespostaWithRelations"
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "ProcessoEtapaQuestaoWithRelations"
      },
      "EtapaWithRelations": {
        "title": "EtapaWithRelations",
        "type": "object",
        "description": "(tsType: EtapaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "abreviatura": {
            "type": "string"
          },
          "sequencia": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "etapaBufferPosterior": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "EtapaWithRelations"
      },
      "ProcessoEtapaWithRelations": {
        "title": "ProcessoEtapaWithRelations",
        "type": "object",
        "description": "(tsType: ProcessoEtapaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "abreviatura": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "sequencia": {
            "type": "number"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "ehObrigatoria": {
            "type": "boolean"
          },
          "proxEtapaSeOk": {
            "type": "number"
          },
          "ehNaoVisivel": {
            "type": "boolean"
          },
          "etapaValidaTempoMinimoSec": {
            "type": "number"
          },
          "etapaValidaTempoMaximoSec": {
            "type": "number"
          },
          "tempoReferenciaMinimoSec": {
            "type": "number"
          },
          "tempoReferenciaMaximoSec": {
            "type": "number"
          },
          "tipoResultado": {
            "type": "number",
            "description": "0-NA 1-Numerico 2-Boolean"
          },
          "unidadeMedidaResultado": {
            "type": "string",
            "description": "0-NA 1-Numerico 2-Boolean"
          },
          "triggerSQL": {
            "type": "string"
          },
          "triggerSQLParametro": {
            "type": "string"
          },
          "abreAutomaticoEtapa": {
            "type": "number"
          },
          "processoId": {
            "type": "number"
          },
          "etapaId": {
            "type": "number"
          },
          "processo": {
            "$ref": "#/components/schemas/ProcessoWithRelations"
          },
          "foreignKey": {},
          "processoEtapaQuestoes": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProcessoEtapaQuestaoWithRelations"
            }
          },
          "etapa": {
            "$ref": "#/components/schemas/EtapaWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "ProcessoEtapaWithRelations"
      },
      "ProcessoWithRelations": {
        "title": "ProcessoWithRelations",
        "type": "object",
        "description": "(tsType: ProcessoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "etapaInicial": {
            "type": "number"
          },
          "processoEtapas": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/ProcessoEtapaWithRelations"
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "ProcessoWithRelations"
      },
      "PneuMedidaWithRelations": {
        "title": "PneuMedidaWithRelations",
        "type": "object",
        "description": "(tsType: PneuMedidaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "largura": {
            "type": "number"
          },
          "raio": {
            "type": "number"
          },
          "construcao": {
            "type": "string"
          },
          "diametro": {
            "type": "number"
          },
          "carga": {
            "type": "number"
          },
          "velocidade": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "glbPneuMedidaId": {
            "type": "number"
          },
          "glbPneuMedida": {
            "$ref": "#/components/schemas/GlbPneuMedidaWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "PneuMedidaWithRelations"
      },
      "StatusOrdemServicoWithRelations": {
        "title": "StatusOrdemServicoWithRelations",
        "type": "object",
        "description": "(tsType: StatusOrdemServicoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "descricaoIntegrador": {
            "type": "string"
          },
          "tipo": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "situacaoOsId": {
            "type": "number"
          },
          "situacaoOs": {
            "$ref": "#/components/schemas/SituacaoOsWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "StatusOrdemServicoWithRelations"
      },
      "ClienteWithRelations": {
        "title": "ClienteWithRelations",
        "type": "object",
        "description": "(tsType: ClienteWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "cpfcnpj": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "ordemServicos": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrdemServicoWithRelations"
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "ClienteWithRelations"
      },
      "ServicoWithRelations": {
        "title": "ServicoWithRelations",
        "type": "object",
        "description": "(tsType: ServicoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "processoId": {
            "type": "number"
          },
          "bandaId": {
            "type": "number"
          },
          "processo": {
            "$ref": "#/components/schemas/ProcessoWithRelations"
          },
          "foreignKey": {},
          "banda": {
            "$ref": "#/components/schemas/BandaWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "ServicoWithRelations"
      },
      "PrioridadeWithRelations": {
        "title": "PrioridadeWithRelations",
        "type": "object",
        "description": "(tsType: PrioridadeWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "tempoHr": {
            "type": "number"
          },
          "default": {
            "type": "boolean"
          },
          "notificacaoEmHr": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "PrioridadeWithRelations"
      },
      "TipoItemWithRelations": {
        "title": "TipoItemWithRelations",
        "type": "object",
        "description": "(tsType: TipoItemWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "TipoItemWithRelations"
      },
      "ItemWithRelations": {
        "title": "ItemWithRelations",
        "type": "object",
        "description": "(tsType: ItemWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "larguraBanda": {
            "type": "number"
          },
          "codMaterialUnique": {
            "type": "number"
          },
          "grupoMaterialUnique": {
            "type": "string"
          },
          "tipoControleEstoque": {
            "type": "number",
            "description": "0: sem controle estque  1: controle por item  2: controle por codigo de barras"
          },
          "codigoBarras": {
            "type": "string"
          },
          "bandaId": {
            "type": "number"
          },
          "tipoItemId": {
            "type": "number"
          },
          "banda": {
            "$ref": "#/components/schemas/BandaWithRelations"
          },
          "foreignKey": {},
          "tipoItem": {
            "$ref": "#/components/schemas/TipoItemWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "ItemWithRelations"
      },
      "OrdemServicoWithRelations": {
        "title": "OrdemServicoWithRelations",
        "type": "object",
        "description": "(tsType: OrdemServicoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "ordemServicoId": {
            "type": "string"
          },
          "ordemServicoSequencia": {
            "type": "string"
          },
          "descricao": {
            "type": "string"
          },
          "DTChegada": {
            "type": "string",
            "format": "date-time"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTSaida": {
            "type": "string",
            "format": "date-time"
          },
          "dot": {
            "type": "string"
          },
          "marcaFogo": {
            "type": "string"
          },
          "vida": {
            "type": "number"
          },
          "etapaAtual": {
            "type": "number"
          },
          "DTUltimaEtapa": {
            "type": "string",
            "format": "date-time"
          },
          "erpOSId": {
            "type": "number"
          },
          "teveRetrabalho": {
            "type": "boolean"
          },
          "larguraBandaAplicada": {
            "type": "number"
          },
          "validacaoBanda": {
            "type": "number"
          },
          "legadoPneuFabricante": {
            "type": "string"
          },
          "legadoPneuModelo": {
            "type": "string"
          },
          "legadoPneuMedida": {
            "type": "string"
          },
          "legadoBandaId": {
            "type": "string"
          },
          "legadoBanda": {
            "type": "string"
          },
          "legadoBandaLargura": {
            "type": "number"
          },
          "legadoOrdemServicoSequencia": {
            "type": "string"
          },
          "legadoDHProducao": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDHFaturamento": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDTPrevColeta": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDHLocalizacao": {
            "type": "string",
            "format": "date-time"
          },
          "legadoProduzido": {
            "type": "boolean"
          },
          "legadoFaturado": {
            "type": "boolean"
          },
          "legadoRecusado": {
            "type": "boolean"
          },
          "legadoLocalizacao": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "pneuModeloId": {
            "type": "number"
          },
          "bandaId": {
            "type": "number"
          },
          "processoId": {
            "type": "number"
          },
          "pneuMedidaId": {
            "type": "number"
          },
          "statusOrdemServicoId": {
            "type": "number"
          },
          "clienteId": {
            "type": "number"
          },
          "servicoId": {
            "type": "number"
          },
          "prioridadeId": {
            "type": "number"
          },
          "itemIdBandaAplicada": {
            "type": "number"
          },
          "estabelecimento": {
            "$ref": "#/components/schemas/EstabelecimentoWithRelations"
          },
          "foreignKey": {},
          "pneuModelo": {
            "$ref": "#/components/schemas/PneuModeloWithRelations"
          },
          "banda": {
            "$ref": "#/components/schemas/BandaWithRelations"
          },
          "processo": {
            "$ref": "#/components/schemas/ProcessoWithRelations"
          },
          "pneuMedida": {
            "$ref": "#/components/schemas/PneuMedidaWithRelations"
          },
          "statusOrdemServico": {
            "$ref": "#/components/schemas/StatusOrdemServicoWithRelations"
          },
          "ordemServicoEtapas": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrdemServicoEtapaWithRelations"
            }
          },
          "cliente": {
            "$ref": "#/components/schemas/ClienteWithRelations"
          },
          "servico": {
            "$ref": "#/components/schemas/ServicoWithRelations"
          },
          "prioridade": {
            "$ref": "#/components/schemas/PrioridadeWithRelations"
          },
          "itemBandaAplicada": {
            "$ref": "#/components/schemas/ItemWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OrdemServicoWithRelations"
      },
      "EstacaoTrabalhoWithRelations": {
        "title": "EstacaoTrabalhoWithRelations",
        "type": "object",
        "description": "(tsType: EstacaoTrabalhoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "fabricante": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "numserie": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "solicitaOSAntes": {
            "type": "boolean"
          },
          "i4ColetorDebug": {
            "type": "boolean"
          },
          "loginDh": {
            "type": "string",
            "format": "date-time"
          },
          "OSAtual": {
            "type": "string"
          },
          "osId": {
            "type": "number"
          },
          "OSDhIni": {
            "type": "string",
            "format": "date-time"
          },
          "OSDhFim": {
            "type": "string",
            "format": "date-time"
          },
          "etapaId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          },
          "etapa": {
            "$ref": "#/components/schemas/EtapaWithRelations"
          },
          "foreignKey": {},
          "estabelecimento": {
            "$ref": "#/components/schemas/EstabelecimentoWithRelations"
          },
          "operador": {
            "$ref": "#/components/schemas/OperadorWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "EstacaoTrabalhoWithRelations"
      },
      "OrdemServicoEtapaQuestaoWithRelations": {
        "title": "OrdemServicoEtapaQuestaoWithRelations",
        "type": "object",
        "description": "(tsType: OrdemServicoEtapaQuestaoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "resposta": {
            "type": "string"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTResposta": {
            "type": "string",
            "format": "date-time"
          },
          "processoEtapaId": {
            "type": "number"
          },
          "ordemServicoId": {
            "type": "number"
          },
          "os": {
            "type": "string"
          },
          "estabId": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "localOSEId": {
            "type": "number"
          },
          "erpOSEQId": {
            "type": "number"
          },
          "WSEnvio2ERP": {
            "type": "number"
          },
          "ERPResposta": {
            "type": "string"
          },
          "ERPDh": {
            "type": "string",
            "format": "date-time"
          },
          "ordemServicoEtapaId": {
            "type": "number"
          },
          "processoEtapaQuestaoId": {
            "type": "number"
          },
          "processoEtapaQuestaoRespostaId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          },
          "ordemServicoEtapa": {
            "$ref": "#/components/schemas/OrdemServicoEtapaWithRelations"
          },
          "foreignKey": {},
          "processoEtapaQuestao": {
            "$ref": "#/components/schemas/ProcessoEtapaQuestaoWithRelations"
          },
          "processoEtapaQuestaoResposta": {
            "$ref": "#/components/schemas/ProcessoEtapaQuestaoRespostaWithRelations"
          },
          "operador": {
            "$ref": "#/components/schemas/OperadorWithRelations"
          },
          "estacaoTrabalho": {
            "$ref": "#/components/schemas/EstacaoTrabalhoWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OrdemServicoEtapaQuestaoWithRelations"
      },
      "OrdemServicoEtapaWithRelations": {
        "title": "OrdemServicoEtapaWithRelations",
        "type": "object",
        "description": "(tsType: OrdemServicoEtapaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "DTChegada": {
            "type": "string",
            "format": "date-time"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimProducao": {
            "type": "string",
            "format": "date-time"
          },
          "maquinaId": {
            "type": "number"
          },
          "maquinaCiclo": {
            "type": "number"
          },
          "maquinaPosicao": {
            "type": "number"
          },
          "resultado": {
            "type": "number"
          },
          "estabId": {
            "type": "number"
          },
          "os": {
            "type": "string"
          },
          "localId": {
            "type": "number"
          },
          "erpOSEId": {
            "type": "number"
          },
          "WSEnvio2ERP": {
            "type": "number"
          },
          "ERPResposta": {
            "type": "string"
          },
          "ERPDh": {
            "type": "string",
            "format": "date-time"
          },
          "observacoes": {
            "type": "string"
          },
          "ordemServicoId": {
            "type": "number"
          },
          "etapaId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          },
          "processoEtapaId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          },
          "ordemServico": {
            "$ref": "#/components/schemas/OrdemServicoWithRelations"
          },
          "foreignKey": {},
          "etapa": {
            "$ref": "#/components/schemas/EtapaWithRelations"
          },
          "estacaoTrabalho": {
            "$ref": "#/components/schemas/EstacaoTrabalhoWithRelations"
          },
          "processoEtapa": {
            "$ref": "#/components/schemas/ProcessoEtapaWithRelations"
          },
          "ordemServicoEtapaQuestaos": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/OrdemServicoEtapaQuestaoWithRelations"
            }
          },
          "operador": {
            "$ref": "#/components/schemas/OperadorWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OrdemServicoEtapaWithRelations"
      },
      "RaspaCicloWithRelations": {
        "title": "RaspaCicloWithRelations",
        "type": "object",
        "description": "(tsType: RaspaCicloWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "dataInicio": {
            "type": "string",
            "format": "date-time"
          },
          "dataFim": {
            "type": "string",
            "format": "date-time"
          },
          "dataFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "usuario": {
            "type": "string"
          },
          "receita": {
            "type": "string"
          },
          "recLargura": {
            "type": "number"
          },
          "recLarguraBanda": {
            "type": "number"
          },
          "recRaio": {
            "type": "number"
          },
          "recPerimetroFinal": {
            "type": "number"
          },
          "recOmbroRaio": {
            "type": "number"
          },
          "recOmbroAngulo": {
            "type": "number"
          },
          "recOmbroComp": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "mandril": {
            "type": "number"
          },
          "tempoCiclo": {
            "type": "number"
          },
          "tempoEsperaOper": {
            "type": "number"
          },
          "raspaReceitaId": {
            "type": "number"
          },
          "monPerimetroFinal": {
            "type": "number"
          },
          "monPerimetroInicial": {
            "type": "number"
          },
          "monPerimetroEmAguarde": {
            "type": "number"
          },
          "correcaoEsq": {
            "type": "number"
          },
          "correcaoDir": {
            "type": "number"
          },
          "modoOper": {
            "type": "number"
          },
          "avancoExtra": {
            "type": "number"
          },
          "sensorMalha": {
            "type": "number"
          },
          "contadorPneus": {
            "type": "number"
          },
          "contadorSerra": {
            "type": "number"
          },
          "contadorSerraRaspagem": {
            "type": "number"
          },
          "loginId": {
            "type": "number"
          },
          "serraFabricante": {
            "type": "string"
          },
          "raspaCicloSerraId": {
            "type": "number"
          },
          "consumoEnergia": {
            "type": "number"
          },
          "bandaFisicaId": {
            "type": "number"
          },
          "bandaFisicaLargura": {
            "type": "number"
          },
          "bandaFisicaPerimetro": {
            "type": "number"
          },
          "bandaFisicaEnviaCorte": {
            "type": "boolean"
          },
          "teveEnchimento": {
            "type": "boolean"
          },
          "tipoCiclo": {
            "type": "number",
            "description": "1-RASPA 2-LIMPEZA 3-AJUSTE DE BANDA 4-SEGUNDA+ RASPAGEM"
          },
          "resultadoRaspagem": {
            "type": "number",
            "description": "Resultado da raspagem 0-NAOINF 1-BOM 2-REGULAR 3-RUIM"
          },
          "vidaPneuRaspagem": {
            "type": "number",
            "description": "Vida da carcaca 1a raspagem 2a raspagem etc..."
          },
          "modoRaspagem": {
            "type": "number",
            "description": "-1-NA  0-SEMI 1-AUTO"
          },
          "carcacaEbanda": {
            "type": "string"
          },
          "fimAntesOuEmergencia": {
            "type": "boolean"
          },
          "numReceitasDisponivels": {
            "type": "number"
          },
          "ehReceitaManual": {
            "type": "boolean"
          },
          "numPassesAvanco": {
            "type": "number"
          },
          "numPassesTotal": {
            "type": "number"
          },
          "log": {
            "type": "string"
          },
          "telemetria": {
            "type": "string"
          },
          "ehRaspagemValida": {
            "type": "boolean"
          },
          "versaoReceita": {
            "type": "number"
          },
          "milimetrosRaspados": {
            "type": "number"
          },
          "tempoRobo": {
            "type": "number"
          },
          "tempoMandril": {
            "type": "number"
          },
          "tempoAguardeOperador": {
            "type": "number"
          },
          "tempoAguardeOperadorPosFim": {
            "type": "number"
          },
          "tempoAguardeRobo": {
            "type": "number"
          },
          "tempoOtimizado": {
            "type": "number"
          },
          "glbReceitaId": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          },
          "ordemServicoEtapaId": {
            "type": "number"
          },
          "glbReceita": {
            "$ref": "#/components/schemas/GlbRaspaReceitaWithRelations"
          },
          "foreignKey": {},
          "raspa": {
            "$ref": "#/components/schemas/RaspaWithRelations"
          },
          "ordemServicoEtapa": {
            "$ref": "#/components/schemas/OrdemServicoEtapaWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "RaspaCicloWithRelations"
      },
      "RoitreadCicloEstado": {
        "title": "RoitreadCicloEstado",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "tempoSec": {
            "type": "number"
          },
          "estabId": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "roitreadCicloId": {
            "type": "number"
          },
          "dt": {
            "type": "string",
            "format": "date-time"
          },
          "roitreadId": {
            "type": "number"
          },
          "roitreadEstadoId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "RoitreadCicloEstadoPartial": {
        "title": "RoitreadCicloEstadoPartial",
        "type": "object",
        "description": "(tsType: Partial<RoitreadCicloEstado>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "tempoSec": {
            "type": "number"
          },
          "estabId": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "roitreadCicloId": {
            "type": "number"
          },
          "dt": {
            "type": "string",
            "format": "date-time"
          },
          "roitreadId": {
            "type": "number"
          },
          "roitreadEstadoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<RoitreadCicloEstado>"
      },
      "Operador": {
        "title": "Operador",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "nome": {
            "type": "string"
          },
          "abreviatura": {
            "type": "string"
          },
          "alertaAposXHoras": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "RoitreadEstado": {
        "title": "RoitreadEstado",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "Raspa": {
        "title": "Raspa",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewRaspa": {
        "title": "NewRaspa",
        "type": "object",
        "description": "(tsType: Omit<Raspa, 'id'>, schemaOptions: { title: 'NewRaspa', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Raspa, 'id'>"
      },
      "RaspaPartial": {
        "title": "RaspaPartial",
        "type": "object",
        "description": "(tsType: Partial<Raspa>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Raspa>"
      },
      "RaspaReceita": {
        "title": "RaspaReceita",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "largura": {
            "type": "number"
          },
          "larguraBanda": {
            "type": "number"
          },
          "raioRaspagem": {
            "type": "number"
          },
          "perimetro": {
            "type": "number"
          },
          "anguloOmbro": {
            "type": "number"
          },
          "comprimentoOmbro": {
            "type": "number"
          },
          "raioOmbro": {
            "type": "number"
          },
          "receitaMensagem": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "pneuModeloId": {
            "type": "number"
          },
          "bandaId": {
            "type": "number"
          },
          "pneuMedidaId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewRaspaReceita": {
        "title": "NewRaspaReceita",
        "type": "object",
        "description": "(tsType: Omit<RaspaReceita, 'id'>, schemaOptions: { title: 'NewRaspaReceita', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "localId": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "largura": {
            "type": "number"
          },
          "larguraBanda": {
            "type": "number"
          },
          "raioRaspagem": {
            "type": "number"
          },
          "perimetro": {
            "type": "number"
          },
          "anguloOmbro": {
            "type": "number"
          },
          "comprimentoOmbro": {
            "type": "number"
          },
          "raioOmbro": {
            "type": "number"
          },
          "receitaMensagem": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "pneuModeloId": {
            "type": "number"
          },
          "bandaId": {
            "type": "number"
          },
          "pneuMedidaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<RaspaReceita, 'id'>"
      },
      "RaspaReceitaWithRelations": {
        "title": "RaspaReceitaWithRelations",
        "type": "object",
        "description": "(tsType: RaspaReceitaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "largura": {
            "type": "number"
          },
          "larguraBanda": {
            "type": "number"
          },
          "raioRaspagem": {
            "type": "number"
          },
          "perimetro": {
            "type": "number"
          },
          "anguloOmbro": {
            "type": "number"
          },
          "comprimentoOmbro": {
            "type": "number"
          },
          "raioOmbro": {
            "type": "number"
          },
          "receitaMensagem": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "pneuModeloId": {
            "type": "number"
          },
          "bandaId": {
            "type": "number"
          },
          "pneuMedidaId": {
            "type": "number"
          },
          "pneuModelo": {
            "$ref": "#/components/schemas/PneuModeloWithRelations"
          },
          "foreignKey": {},
          "banda": {
            "$ref": "#/components/schemas/BandaWithRelations"
          },
          "pneuMedida": {
            "$ref": "#/components/schemas/PneuMedidaWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "RaspaReceitaWithRelations"
      },
      "RaspaReceitaPartial": {
        "title": "RaspaReceitaPartial",
        "type": "object",
        "description": "(tsType: Partial<RaspaReceita>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "largura": {
            "type": "number"
          },
          "larguraBanda": {
            "type": "number"
          },
          "raioRaspagem": {
            "type": "number"
          },
          "perimetro": {
            "type": "number"
          },
          "anguloOmbro": {
            "type": "number"
          },
          "comprimentoOmbro": {
            "type": "number"
          },
          "raioOmbro": {
            "type": "number"
          },
          "receitaMensagem": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "pneuModeloId": {
            "type": "number"
          },
          "bandaId": {
            "type": "number"
          },
          "pneuMedidaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<RaspaReceita>"
      },
      "PneuModelo": {
        "title": "PneuModelo",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "pneuFabricanteId": {
            "type": "number"
          },
          "glbPneuModeloId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "PneuMedida": {
        "title": "PneuMedida",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "largura": {
            "type": "number"
          },
          "raio": {
            "type": "number"
          },
          "construcao": {
            "type": "string"
          },
          "diametro": {
            "type": "number"
          },
          "carga": {
            "type": "number"
          },
          "velocidade": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "glbPneuMedidaId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "RaspaLogin": {
        "title": "RaspaLogin",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "usuario": {
            "type": "string"
          },
          "login": {
            "type": "string",
            "format": "date-time"
          },
          "logout": {
            "type": "string",
            "format": "date-time"
          },
          "localId": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewRaspaLoginInRaspa": {
        "title": "NewRaspaLoginInRaspa",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<RaspaLogin, 'id'>, 'raspaId'>, schemaOptions: { title: 'NewRaspaLoginInRaspa', exclude: [ 'id' ], optional: [ 'raspaId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "usuario": {
            "type": "string"
          },
          "login": {
            "type": "string",
            "format": "date-time"
          },
          "logout": {
            "type": "string",
            "format": "date-time"
          },
          "localId": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<RaspaLogin, 'id'>, 'raspaId'>"
      },
      "RaspaLoginPartial": {
        "title": "RaspaLoginPartial",
        "type": "object",
        "description": "(tsType: Partial<RaspaLogin>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "usuario": {
            "type": "string"
          },
          "login": {
            "type": "string",
            "format": "date-time"
          },
          "logout": {
            "type": "string",
            "format": "date-time"
          },
          "localId": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<RaspaLogin>"
      },
      "RaspaCiclo": {
        "title": "RaspaCiclo",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "dataInicio": {
            "type": "string",
            "format": "date-time"
          },
          "dataFim": {
            "type": "string",
            "format": "date-time"
          },
          "dataFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "usuario": {
            "type": "string"
          },
          "receita": {
            "type": "string"
          },
          "recLargura": {
            "type": "number"
          },
          "recLarguraBanda": {
            "type": "number"
          },
          "recRaio": {
            "type": "number"
          },
          "recPerimetroFinal": {
            "type": "number"
          },
          "recOmbroRaio": {
            "type": "number"
          },
          "recOmbroAngulo": {
            "type": "number"
          },
          "recOmbroComp": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "mandril": {
            "type": "number"
          },
          "tempoCiclo": {
            "type": "number"
          },
          "tempoEsperaOper": {
            "type": "number"
          },
          "raspaReceitaId": {
            "type": "number"
          },
          "monPerimetroFinal": {
            "type": "number"
          },
          "monPerimetroInicial": {
            "type": "number"
          },
          "monPerimetroEmAguarde": {
            "type": "number"
          },
          "correcaoEsq": {
            "type": "number"
          },
          "correcaoDir": {
            "type": "number"
          },
          "modoOper": {
            "type": "number"
          },
          "avancoExtra": {
            "type": "number"
          },
          "sensorMalha": {
            "type": "number"
          },
          "contadorPneus": {
            "type": "number"
          },
          "contadorSerra": {
            "type": "number"
          },
          "contadorSerraRaspagem": {
            "type": "number"
          },
          "loginId": {
            "type": "number"
          },
          "serraFabricante": {
            "type": "string"
          },
          "raspaCicloSerraId": {
            "type": "number"
          },
          "consumoEnergia": {
            "type": "number"
          },
          "bandaFisicaId": {
            "type": "number"
          },
          "bandaFisicaLargura": {
            "type": "number"
          },
          "bandaFisicaPerimetro": {
            "type": "number"
          },
          "bandaFisicaEnviaCorte": {
            "type": "boolean"
          },
          "teveEnchimento": {
            "type": "boolean"
          },
          "tipoCiclo": {
            "type": "number",
            "description": "1-RASPA 2-LIMPEZA 3-AJUSTE DE BANDA 4-SEGUNDA+ RASPAGEM"
          },
          "resultadoRaspagem": {
            "type": "number",
            "description": "Resultado da raspagem 0-NAOINF 1-BOM 2-REGULAR 3-RUIM"
          },
          "vidaPneuRaspagem": {
            "type": "number",
            "description": "Vida da carcaca 1a raspagem 2a raspagem etc..."
          },
          "modoRaspagem": {
            "type": "number",
            "description": "-1-NA  0-SEMI 1-AUTO"
          },
          "carcacaEbanda": {
            "type": "string"
          },
          "fimAntesOuEmergencia": {
            "type": "boolean"
          },
          "numReceitasDisponivels": {
            "type": "number"
          },
          "ehReceitaManual": {
            "type": "boolean"
          },
          "numPassesAvanco": {
            "type": "number"
          },
          "numPassesTotal": {
            "type": "number"
          },
          "log": {
            "type": "string"
          },
          "telemetria": {
            "type": "string"
          },
          "ehRaspagemValida": {
            "type": "boolean"
          },
          "versaoReceita": {
            "type": "number"
          },
          "milimetrosRaspados": {
            "type": "number"
          },
          "tempoRobo": {
            "type": "number"
          },
          "tempoMandril": {
            "type": "number"
          },
          "tempoAguardeOperador": {
            "type": "number"
          },
          "tempoAguardeOperadorPosFim": {
            "type": "number"
          },
          "tempoAguardeRobo": {
            "type": "number"
          },
          "tempoOtimizado": {
            "type": "number"
          },
          "glbReceitaId": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          },
          "ordemServicoEtapaId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewRaspaCicloInRaspa": {
        "title": "NewRaspaCicloInRaspa",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<RaspaCiclo, 'id'>, 'raspaId'>, schemaOptions: { title: 'NewRaspaCicloInRaspa', exclude: [ 'id' ], optional: [ 'raspaId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "localId": {
            "type": "number"
          },
          "dataInicio": {
            "type": "string",
            "format": "date-time"
          },
          "dataFim": {
            "type": "string",
            "format": "date-time"
          },
          "dataFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "usuario": {
            "type": "string"
          },
          "receita": {
            "type": "string"
          },
          "recLargura": {
            "type": "number"
          },
          "recLarguraBanda": {
            "type": "number"
          },
          "recRaio": {
            "type": "number"
          },
          "recPerimetroFinal": {
            "type": "number"
          },
          "recOmbroRaio": {
            "type": "number"
          },
          "recOmbroAngulo": {
            "type": "number"
          },
          "recOmbroComp": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "mandril": {
            "type": "number"
          },
          "tempoCiclo": {
            "type": "number"
          },
          "tempoEsperaOper": {
            "type": "number"
          },
          "raspaReceitaId": {
            "type": "number"
          },
          "monPerimetroFinal": {
            "type": "number"
          },
          "monPerimetroInicial": {
            "type": "number"
          },
          "monPerimetroEmAguarde": {
            "type": "number"
          },
          "correcaoEsq": {
            "type": "number"
          },
          "correcaoDir": {
            "type": "number"
          },
          "modoOper": {
            "type": "number"
          },
          "avancoExtra": {
            "type": "number"
          },
          "sensorMalha": {
            "type": "number"
          },
          "contadorPneus": {
            "type": "number"
          },
          "contadorSerra": {
            "type": "number"
          },
          "contadorSerraRaspagem": {
            "type": "number"
          },
          "loginId": {
            "type": "number"
          },
          "serraFabricante": {
            "type": "string"
          },
          "raspaCicloSerraId": {
            "type": "number"
          },
          "consumoEnergia": {
            "type": "number"
          },
          "bandaFisicaId": {
            "type": "number"
          },
          "bandaFisicaLargura": {
            "type": "number"
          },
          "bandaFisicaPerimetro": {
            "type": "number"
          },
          "bandaFisicaEnviaCorte": {
            "type": "boolean"
          },
          "teveEnchimento": {
            "type": "boolean"
          },
          "tipoCiclo": {
            "type": "number",
            "description": "1-RASPA 2-LIMPEZA 3-AJUSTE DE BANDA 4-SEGUNDA+ RASPAGEM"
          },
          "resultadoRaspagem": {
            "type": "number",
            "description": "Resultado da raspagem 0-NAOINF 1-BOM 2-REGULAR 3-RUIM"
          },
          "vidaPneuRaspagem": {
            "type": "number",
            "description": "Vida da carcaca 1a raspagem 2a raspagem etc..."
          },
          "modoRaspagem": {
            "type": "number",
            "description": "-1-NA  0-SEMI 1-AUTO"
          },
          "carcacaEbanda": {
            "type": "string"
          },
          "fimAntesOuEmergencia": {
            "type": "boolean"
          },
          "numReceitasDisponivels": {
            "type": "number"
          },
          "ehReceitaManual": {
            "type": "boolean"
          },
          "numPassesAvanco": {
            "type": "number"
          },
          "numPassesTotal": {
            "type": "number"
          },
          "log": {
            "type": "string"
          },
          "telemetria": {
            "type": "string"
          },
          "ehRaspagemValida": {
            "type": "boolean"
          },
          "versaoReceita": {
            "type": "number"
          },
          "milimetrosRaspados": {
            "type": "number"
          },
          "tempoRobo": {
            "type": "number"
          },
          "tempoMandril": {
            "type": "number"
          },
          "tempoAguardeOperador": {
            "type": "number"
          },
          "tempoAguardeOperadorPosFim": {
            "type": "number"
          },
          "tempoAguardeRobo": {
            "type": "number"
          },
          "tempoOtimizado": {
            "type": "number"
          },
          "glbReceitaId": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          },
          "ordemServicoEtapaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<RaspaCiclo, 'id'>, 'raspaId'>"
      },
      "RaspaCicloPartial": {
        "title": "RaspaCicloPartial",
        "type": "object",
        "description": "(tsType: Partial<RaspaCiclo>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "dataInicio": {
            "type": "string",
            "format": "date-time"
          },
          "dataFim": {
            "type": "string",
            "format": "date-time"
          },
          "dataFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "usuario": {
            "type": "string"
          },
          "receita": {
            "type": "string"
          },
          "recLargura": {
            "type": "number"
          },
          "recLarguraBanda": {
            "type": "number"
          },
          "recRaio": {
            "type": "number"
          },
          "recPerimetroFinal": {
            "type": "number"
          },
          "recOmbroRaio": {
            "type": "number"
          },
          "recOmbroAngulo": {
            "type": "number"
          },
          "recOmbroComp": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "mandril": {
            "type": "number"
          },
          "tempoCiclo": {
            "type": "number"
          },
          "tempoEsperaOper": {
            "type": "number"
          },
          "raspaReceitaId": {
            "type": "number"
          },
          "monPerimetroFinal": {
            "type": "number"
          },
          "monPerimetroInicial": {
            "type": "number"
          },
          "monPerimetroEmAguarde": {
            "type": "number"
          },
          "correcaoEsq": {
            "type": "number"
          },
          "correcaoDir": {
            "type": "number"
          },
          "modoOper": {
            "type": "number"
          },
          "avancoExtra": {
            "type": "number"
          },
          "sensorMalha": {
            "type": "number"
          },
          "contadorPneus": {
            "type": "number"
          },
          "contadorSerra": {
            "type": "number"
          },
          "contadorSerraRaspagem": {
            "type": "number"
          },
          "loginId": {
            "type": "number"
          },
          "serraFabricante": {
            "type": "string"
          },
          "raspaCicloSerraId": {
            "type": "number"
          },
          "consumoEnergia": {
            "type": "number"
          },
          "bandaFisicaId": {
            "type": "number"
          },
          "bandaFisicaLargura": {
            "type": "number"
          },
          "bandaFisicaPerimetro": {
            "type": "number"
          },
          "bandaFisicaEnviaCorte": {
            "type": "boolean"
          },
          "teveEnchimento": {
            "type": "boolean"
          },
          "tipoCiclo": {
            "type": "number",
            "description": "1-RASPA 2-LIMPEZA 3-AJUSTE DE BANDA 4-SEGUNDA+ RASPAGEM"
          },
          "resultadoRaspagem": {
            "type": "number",
            "description": "Resultado da raspagem 0-NAOINF 1-BOM 2-REGULAR 3-RUIM"
          },
          "vidaPneuRaspagem": {
            "type": "number",
            "description": "Vida da carcaca 1a raspagem 2a raspagem etc..."
          },
          "modoRaspagem": {
            "type": "number",
            "description": "-1-NA  0-SEMI 1-AUTO"
          },
          "carcacaEbanda": {
            "type": "string"
          },
          "fimAntesOuEmergencia": {
            "type": "boolean"
          },
          "numReceitasDisponivels": {
            "type": "number"
          },
          "ehReceitaManual": {
            "type": "boolean"
          },
          "numPassesAvanco": {
            "type": "number"
          },
          "numPassesTotal": {
            "type": "number"
          },
          "log": {
            "type": "string"
          },
          "telemetria": {
            "type": "string"
          },
          "ehRaspagemValida": {
            "type": "boolean"
          },
          "versaoReceita": {
            "type": "number"
          },
          "milimetrosRaspados": {
            "type": "number"
          },
          "tempoRobo": {
            "type": "number"
          },
          "tempoMandril": {
            "type": "number"
          },
          "tempoAguardeOperador": {
            "type": "number"
          },
          "tempoAguardeOperadorPosFim": {
            "type": "number"
          },
          "tempoAguardeRobo": {
            "type": "number"
          },
          "tempoOtimizado": {
            "type": "number"
          },
          "glbReceitaId": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          },
          "ordemServicoEtapaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<RaspaCiclo>"
      },
      "RaspaCicloSerra": {
        "title": "RaspaCicloSerra",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "cicloId": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "qtdePneus": {
            "type": "number"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "dataFinal": {
            "type": "string",
            "format": "date-time"
          },
          "contadorSerra": {
            "type": "number"
          },
          "contadorPneusInicial": {
            "type": "number"
          },
          "contadorPneusFinal": {
            "type": "number"
          },
          "milimetrosRaspados": {
            "type": "number"
          },
          "Fabricante": {
            "type": "string"
          },
          "usuario": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "numCiclosDB": {
            "type": "number"
          },
          "numCiclosValidos": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewRaspaCicloSerraInRaspa": {
        "title": "NewRaspaCicloSerraInRaspa",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<RaspaCicloSerra, 'id'>, 'raspaId'>, schemaOptions: { title: 'NewRaspaCicloSerraInRaspa', exclude: [ 'id' ], optional: [ 'raspaId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "cicloId": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "qtdePneus": {
            "type": "number"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "dataFinal": {
            "type": "string",
            "format": "date-time"
          },
          "contadorSerra": {
            "type": "number"
          },
          "contadorPneusInicial": {
            "type": "number"
          },
          "contadorPneusFinal": {
            "type": "number"
          },
          "milimetrosRaspados": {
            "type": "number"
          },
          "Fabricante": {
            "type": "string"
          },
          "usuario": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "numCiclosDB": {
            "type": "number"
          },
          "numCiclosValidos": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<RaspaCicloSerra, 'id'>, 'raspaId'>"
      },
      "RaspaCicloSerraPartial": {
        "title": "RaspaCicloSerraPartial",
        "type": "object",
        "description": "(tsType: Partial<RaspaCicloSerra>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "cicloId": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "qtdePneus": {
            "type": "number"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "dataFinal": {
            "type": "string",
            "format": "date-time"
          },
          "contadorSerra": {
            "type": "number"
          },
          "contadorPneusInicial": {
            "type": "number"
          },
          "contadorPneusFinal": {
            "type": "number"
          },
          "milimetrosRaspados": {
            "type": "number"
          },
          "Fabricante": {
            "type": "string"
          },
          "usuario": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "numCiclosDB": {
            "type": "number"
          },
          "numCiclosValidos": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<RaspaCicloSerra>"
      },
      "RaspaAlarme": {
        "title": "RaspaAlarme",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "mensagem": {
            "type": "string"
          },
          "localId": {
            "type": "number"
          },
          "index": {
            "type": "number"
          },
          "usuario": {
            "type": "string"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewRaspaAlarmeInRaspa": {
        "title": "NewRaspaAlarmeInRaspa",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<RaspaAlarme, 'id'>, 'raspaId'>, schemaOptions: { title: 'NewRaspaAlarmeInRaspa', exclude: [ 'id' ], optional: [ 'raspaId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "mensagem": {
            "type": "string"
          },
          "localId": {
            "type": "number"
          },
          "index": {
            "type": "number"
          },
          "usuario": {
            "type": "string"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<RaspaAlarme, 'id'>, 'raspaId'>"
      },
      "RaspaAlarmePartial": {
        "title": "RaspaAlarmePartial",
        "type": "object",
        "description": "(tsType: Partial<RaspaAlarme>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "mensagem": {
            "type": "string"
          },
          "localId": {
            "type": "number"
          },
          "index": {
            "type": "number"
          },
          "usuario": {
            "type": "string"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<RaspaAlarme>"
      },
      "NewRaspaLogin": {
        "title": "NewRaspaLogin",
        "type": "object",
        "description": "(tsType: Omit<RaspaLogin, 'id'>, schemaOptions: { title: 'NewRaspaLogin', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "usuario": {
            "type": "string"
          },
          "login": {
            "type": "string",
            "format": "date-time"
          },
          "logout": {
            "type": "string",
            "format": "date-time"
          },
          "localId": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<RaspaLogin, 'id'>"
      },
      "NewRaspaCiclo": {
        "title": "NewRaspaCiclo",
        "type": "object",
        "description": "(tsType: Omit<RaspaCiclo, 'id'>, schemaOptions: { title: 'NewRaspaCiclo', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "localId": {
            "type": "number"
          },
          "dataInicio": {
            "type": "string",
            "format": "date-time"
          },
          "dataFim": {
            "type": "string",
            "format": "date-time"
          },
          "dataFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "usuario": {
            "type": "string"
          },
          "receita": {
            "type": "string"
          },
          "recLargura": {
            "type": "number"
          },
          "recLarguraBanda": {
            "type": "number"
          },
          "recRaio": {
            "type": "number"
          },
          "recPerimetroFinal": {
            "type": "number"
          },
          "recOmbroRaio": {
            "type": "number"
          },
          "recOmbroAngulo": {
            "type": "number"
          },
          "recOmbroComp": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "mandril": {
            "type": "number"
          },
          "tempoCiclo": {
            "type": "number"
          },
          "tempoEsperaOper": {
            "type": "number"
          },
          "raspaReceitaId": {
            "type": "number"
          },
          "monPerimetroFinal": {
            "type": "number"
          },
          "monPerimetroInicial": {
            "type": "number"
          },
          "monPerimetroEmAguarde": {
            "type": "number"
          },
          "correcaoEsq": {
            "type": "number"
          },
          "correcaoDir": {
            "type": "number"
          },
          "modoOper": {
            "type": "number"
          },
          "avancoExtra": {
            "type": "number"
          },
          "sensorMalha": {
            "type": "number"
          },
          "contadorPneus": {
            "type": "number"
          },
          "contadorSerra": {
            "type": "number"
          },
          "contadorSerraRaspagem": {
            "type": "number"
          },
          "loginId": {
            "type": "number"
          },
          "serraFabricante": {
            "type": "string"
          },
          "raspaCicloSerraId": {
            "type": "number"
          },
          "consumoEnergia": {
            "type": "number"
          },
          "bandaFisicaId": {
            "type": "number"
          },
          "bandaFisicaLargura": {
            "type": "number"
          },
          "bandaFisicaPerimetro": {
            "type": "number"
          },
          "bandaFisicaEnviaCorte": {
            "type": "boolean"
          },
          "teveEnchimento": {
            "type": "boolean"
          },
          "tipoCiclo": {
            "type": "number",
            "description": "1-RASPA 2-LIMPEZA 3-AJUSTE DE BANDA 4-SEGUNDA+ RASPAGEM"
          },
          "resultadoRaspagem": {
            "type": "number",
            "description": "Resultado da raspagem 0-NAOINF 1-BOM 2-REGULAR 3-RUIM"
          },
          "vidaPneuRaspagem": {
            "type": "number",
            "description": "Vida da carcaca 1a raspagem 2a raspagem etc..."
          },
          "modoRaspagem": {
            "type": "number",
            "description": "-1-NA  0-SEMI 1-AUTO"
          },
          "carcacaEbanda": {
            "type": "string"
          },
          "fimAntesOuEmergencia": {
            "type": "boolean"
          },
          "numReceitasDisponivels": {
            "type": "number"
          },
          "ehReceitaManual": {
            "type": "boolean"
          },
          "numPassesAvanco": {
            "type": "number"
          },
          "numPassesTotal": {
            "type": "number"
          },
          "log": {
            "type": "string"
          },
          "telemetria": {
            "type": "string"
          },
          "ehRaspagemValida": {
            "type": "boolean"
          },
          "versaoReceita": {
            "type": "number"
          },
          "milimetrosRaspados": {
            "type": "number"
          },
          "tempoRobo": {
            "type": "number"
          },
          "tempoMandril": {
            "type": "number"
          },
          "tempoAguardeOperador": {
            "type": "number"
          },
          "tempoAguardeOperadorPosFim": {
            "type": "number"
          },
          "tempoAguardeRobo": {
            "type": "number"
          },
          "tempoOtimizado": {
            "type": "number"
          },
          "glbReceitaId": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          },
          "ordemServicoEtapaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<RaspaCiclo, 'id'>"
      },
      "NewRaspaCicloSerra": {
        "title": "NewRaspaCicloSerra",
        "type": "object",
        "description": "(tsType: Omit<RaspaCicloSerra, 'id'>, schemaOptions: { title: 'NewRaspaCicloSerra', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "cicloId": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "qtdePneus": {
            "type": "number"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "dataFinal": {
            "type": "string",
            "format": "date-time"
          },
          "contadorSerra": {
            "type": "number"
          },
          "contadorPneusInicial": {
            "type": "number"
          },
          "contadorPneusFinal": {
            "type": "number"
          },
          "milimetrosRaspados": {
            "type": "number"
          },
          "Fabricante": {
            "type": "string"
          },
          "usuario": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "numCiclosDB": {
            "type": "number"
          },
          "numCiclosValidos": {
            "type": "number"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<RaspaCicloSerra, 'id'>"
      },
      "OrdemServicoEtapa": {
        "title": "OrdemServicoEtapa",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "DTChegada": {
            "type": "string",
            "format": "date-time"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimProducao": {
            "type": "string",
            "format": "date-time"
          },
          "maquinaId": {
            "type": "number"
          },
          "maquinaCiclo": {
            "type": "number"
          },
          "maquinaPosicao": {
            "type": "number"
          },
          "resultado": {
            "type": "number"
          },
          "estabId": {
            "type": "number"
          },
          "os": {
            "type": "string"
          },
          "localId": {
            "type": "number"
          },
          "erpOSEId": {
            "type": "number"
          },
          "WSEnvio2ERP": {
            "type": "number"
          },
          "ERPResposta": {
            "type": "string"
          },
          "ERPDh": {
            "type": "string",
            "format": "date-time"
          },
          "observacoes": {
            "type": "string"
          },
          "ordemServicoId": {
            "type": "number"
          },
          "etapaId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          },
          "processoEtapaId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewRaspaAlarme": {
        "title": "NewRaspaAlarme",
        "type": "object",
        "description": "(tsType: Omit<RaspaAlarme, 'id'>, schemaOptions: { title: 'NewRaspaAlarme', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "mensagem": {
            "type": "string"
          },
          "localId": {
            "type": "number"
          },
          "index": {
            "type": "number"
          },
          "usuario": {
            "type": "string"
          },
          "raspaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<RaspaAlarme, 'id'>"
      },
      "NewProcesso": {
        "title": "NewProcesso",
        "type": "object",
        "description": "(tsType: Omit<Processo, 'id'>, schemaOptions: { title: 'NewProcesso', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "etapaInicial": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Processo, 'id'>"
      },
      "ProcessoPartial": {
        "title": "ProcessoPartial",
        "type": "object",
        "description": "(tsType: Partial<Processo>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "etapaInicial": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Processo>"
      },
      "ProcessoEtapa": {
        "title": "ProcessoEtapa",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "abreviatura": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "sequencia": {
            "type": "number"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "ehObrigatoria": {
            "type": "boolean"
          },
          "proxEtapaSeOk": {
            "type": "number"
          },
          "ehNaoVisivel": {
            "type": "boolean"
          },
          "etapaValidaTempoMinimoSec": {
            "type": "number"
          },
          "etapaValidaTempoMaximoSec": {
            "type": "number"
          },
          "tempoReferenciaMinimoSec": {
            "type": "number"
          },
          "tempoReferenciaMaximoSec": {
            "type": "number"
          },
          "tipoResultado": {
            "type": "number",
            "description": "0-NA 1-Numerico 2-Boolean"
          },
          "unidadeMedidaResultado": {
            "type": "string",
            "description": "0-NA 1-Numerico 2-Boolean"
          },
          "triggerSQL": {
            "type": "string"
          },
          "triggerSQLParametro": {
            "type": "string"
          },
          "abreAutomaticoEtapa": {
            "type": "number"
          },
          "processoId": {
            "type": "number"
          },
          "etapaId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewProcessoEtapaInProcesso": {
        "title": "NewProcessoEtapaInProcesso",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<ProcessoEtapa, 'id'>, 'processoId'>, schemaOptions: { title: 'NewProcessoEtapaInProcesso', exclude: [ 'id' ], optional: [ 'processoId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "abreviatura": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "sequencia": {
            "type": "number"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "ehObrigatoria": {
            "type": "boolean"
          },
          "proxEtapaSeOk": {
            "type": "number"
          },
          "ehNaoVisivel": {
            "type": "boolean"
          },
          "etapaValidaTempoMinimoSec": {
            "type": "number"
          },
          "etapaValidaTempoMaximoSec": {
            "type": "number"
          },
          "tempoReferenciaMinimoSec": {
            "type": "number"
          },
          "tempoReferenciaMaximoSec": {
            "type": "number"
          },
          "tipoResultado": {
            "type": "number",
            "description": "0-NA 1-Numerico 2-Boolean"
          },
          "unidadeMedidaResultado": {
            "type": "string",
            "description": "0-NA 1-Numerico 2-Boolean"
          },
          "triggerSQL": {
            "type": "string"
          },
          "triggerSQLParametro": {
            "type": "string"
          },
          "abreAutomaticoEtapa": {
            "type": "number"
          },
          "processoId": {
            "type": "number"
          },
          "etapaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<ProcessoEtapa, 'id'>, 'processoId'>"
      },
      "ProcessoEtapaPartial": {
        "title": "ProcessoEtapaPartial",
        "type": "object",
        "description": "(tsType: Partial<ProcessoEtapa>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "abreviatura": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "sequencia": {
            "type": "number"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "ehObrigatoria": {
            "type": "boolean"
          },
          "proxEtapaSeOk": {
            "type": "number"
          },
          "ehNaoVisivel": {
            "type": "boolean"
          },
          "etapaValidaTempoMinimoSec": {
            "type": "number"
          },
          "etapaValidaTempoMaximoSec": {
            "type": "number"
          },
          "tempoReferenciaMinimoSec": {
            "type": "number"
          },
          "tempoReferenciaMaximoSec": {
            "type": "number"
          },
          "tipoResultado": {
            "type": "number",
            "description": "0-NA 1-Numerico 2-Boolean"
          },
          "unidadeMedidaResultado": {
            "type": "string",
            "description": "0-NA 1-Numerico 2-Boolean"
          },
          "triggerSQL": {
            "type": "string"
          },
          "triggerSQLParametro": {
            "type": "string"
          },
          "abreAutomaticoEtapa": {
            "type": "number"
          },
          "processoId": {
            "type": "number"
          },
          "etapaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<ProcessoEtapa>"
      },
      "NewProcessoEtapa": {
        "title": "NewProcessoEtapa",
        "type": "object",
        "description": "(tsType: Omit<ProcessoEtapa, 'id'>, schemaOptions: { title: 'NewProcessoEtapa', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "abreviatura": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "sequencia": {
            "type": "number"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "ehObrigatoria": {
            "type": "boolean"
          },
          "proxEtapaSeOk": {
            "type": "number"
          },
          "ehNaoVisivel": {
            "type": "boolean"
          },
          "etapaValidaTempoMinimoSec": {
            "type": "number"
          },
          "etapaValidaTempoMaximoSec": {
            "type": "number"
          },
          "tempoReferenciaMinimoSec": {
            "type": "number"
          },
          "tempoReferenciaMaximoSec": {
            "type": "number"
          },
          "tipoResultado": {
            "type": "number",
            "description": "0-NA 1-Numerico 2-Boolean"
          },
          "unidadeMedidaResultado": {
            "type": "string",
            "description": "0-NA 1-Numerico 2-Boolean"
          },
          "triggerSQL": {
            "type": "string"
          },
          "triggerSQLParametro": {
            "type": "string"
          },
          "abreAutomaticoEtapa": {
            "type": "number"
          },
          "processoId": {
            "type": "number"
          },
          "etapaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<ProcessoEtapa, 'id'>"
      },
      "ProcessoEtapaQuestao": {
        "title": "ProcessoEtapaQuestao",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "pergunta": {
            "type": "string"
          },
          "perguntaAbreviada": {
            "type": "string"
          },
          "triggerTEDCarrega": {
            "type": "string"
          },
          "triggerTEDValidacao": {
            "type": "string"
          },
          "triggerTEDProcessa": {
            "type": "string"
          },
          "tipoPergunta": {
            "type": "number"
          },
          "tipoResposta": {
            "type": "number",
            "description": "1- numerica; 2-alfanumerica; 3-sim/nao (1/2); 4-lista alternativas 6-string"
          },
          "ehObrigatoria": {
            "type": "boolean"
          },
          "triggerFuncaoPre": {
            "type": "string",
            "description": "Nome da trigger para disparar antes da pergunta"
          },
          "triggerFuncao": {
            "type": "string",
            "description": "Nome da trigger para disparar com a resposta"
          },
          "sequencia": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "loopPergunta": {
            "type": "boolean"
          },
          "usarDefaultUltimaResposta": {
            "type": "boolean"
          },
          "controlaItem": {
            "type": "number",
            "description": "Cod Item para controlar quantidade utilizada de cada opcao/codigoBarras"
          },
          "limitaItemUso": {
            "type": "number",
            "description": "limita utilizacao do item.codgigoBarras a X em uso por vez. No caso, envelopes, inners,..."
          },
          "processoEtapaId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "ProcessoEtapaQuestaoResposta": {
        "title": "ProcessoEtapaQuestaoResposta",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "sequencia": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "respostaColetor": {
            "type": "string"
          },
          "vaParaEtapa": {
            "type": "number"
          },
          "vaParaPergunta": {
            "type": "number"
          },
          "triggerFuncao": {
            "type": "string"
          },
          "triggerFuncaoParametro": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "triggerSQL": {
            "type": "string"
          },
          "processoEtapaQuestaoId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewProcessoEtapaQuestaoRespostaInProcessoEtapaQuestao": {
        "title": "NewProcessoEtapaQuestaoRespostaInProcessoEtapaQuestao",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<ProcessoEtapaQuestaoResposta, 'id'>, 'processoEtapaQuestaoId'>, schemaOptions: { title: 'NewProcessoEtapaQuestaoRespostaInProcessoEtapaQuestao', exclude: [ 'id' ], optional: [ 'processoEtapaQuestaoId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "sequencia": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "respostaColetor": {
            "type": "string"
          },
          "vaParaEtapa": {
            "type": "number"
          },
          "vaParaPergunta": {
            "type": "number"
          },
          "triggerFuncao": {
            "type": "string"
          },
          "triggerFuncaoParametro": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "triggerSQL": {
            "type": "string"
          },
          "processoEtapaQuestaoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<ProcessoEtapaQuestaoResposta, 'id'>, 'processoEtapaQuestaoId'>"
      },
      "ProcessoEtapaQuestaoRespostaPartial": {
        "title": "ProcessoEtapaQuestaoRespostaPartial",
        "type": "object",
        "description": "(tsType: Partial<ProcessoEtapaQuestaoResposta>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "sequencia": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "respostaColetor": {
            "type": "string"
          },
          "vaParaEtapa": {
            "type": "number"
          },
          "vaParaPergunta": {
            "type": "number"
          },
          "triggerFuncao": {
            "type": "string"
          },
          "triggerFuncaoParametro": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "triggerSQL": {
            "type": "string"
          },
          "processoEtapaQuestaoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<ProcessoEtapaQuestaoResposta>"
      },
      "NewProcessoEtapaQuestaoInProcessoEtapa": {
        "title": "NewProcessoEtapaQuestaoInProcessoEtapa",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<ProcessoEtapaQuestao, 'id'>, 'processoEtapaId'>, schemaOptions: { title: 'NewProcessoEtapaQuestaoInProcessoEtapa', exclude: [ 'id' ], optional: [ 'processoEtapaId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "pergunta": {
            "type": "string"
          },
          "perguntaAbreviada": {
            "type": "string"
          },
          "triggerTEDCarrega": {
            "type": "string"
          },
          "triggerTEDValidacao": {
            "type": "string"
          },
          "triggerTEDProcessa": {
            "type": "string"
          },
          "tipoPergunta": {
            "type": "number"
          },
          "tipoResposta": {
            "type": "number",
            "description": "1- numerica; 2-alfanumerica; 3-sim/nao (1/2); 4-lista alternativas 6-string"
          },
          "ehObrigatoria": {
            "type": "boolean"
          },
          "triggerFuncaoPre": {
            "type": "string",
            "description": "Nome da trigger para disparar antes da pergunta"
          },
          "triggerFuncao": {
            "type": "string",
            "description": "Nome da trigger para disparar com a resposta"
          },
          "sequencia": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "loopPergunta": {
            "type": "boolean"
          },
          "usarDefaultUltimaResposta": {
            "type": "boolean"
          },
          "controlaItem": {
            "type": "number",
            "description": "Cod Item para controlar quantidade utilizada de cada opcao/codigoBarras"
          },
          "limitaItemUso": {
            "type": "number",
            "description": "limita utilizacao do item.codgigoBarras a X em uso por vez. No caso, envelopes, inners,..."
          },
          "processoEtapaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<ProcessoEtapaQuestao, 'id'>, 'processoEtapaId'>"
      },
      "ProcessoEtapaQuestaoPartial": {
        "title": "ProcessoEtapaQuestaoPartial",
        "type": "object",
        "description": "(tsType: Partial<ProcessoEtapaQuestao>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "pergunta": {
            "type": "string"
          },
          "perguntaAbreviada": {
            "type": "string"
          },
          "triggerTEDCarrega": {
            "type": "string"
          },
          "triggerTEDValidacao": {
            "type": "string"
          },
          "triggerTEDProcessa": {
            "type": "string"
          },
          "tipoPergunta": {
            "type": "number"
          },
          "tipoResposta": {
            "type": "number",
            "description": "1- numerica; 2-alfanumerica; 3-sim/nao (1/2); 4-lista alternativas 6-string"
          },
          "ehObrigatoria": {
            "type": "boolean"
          },
          "triggerFuncaoPre": {
            "type": "string",
            "description": "Nome da trigger para disparar antes da pergunta"
          },
          "triggerFuncao": {
            "type": "string",
            "description": "Nome da trigger para disparar com a resposta"
          },
          "sequencia": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "loopPergunta": {
            "type": "boolean"
          },
          "usarDefaultUltimaResposta": {
            "type": "boolean"
          },
          "controlaItem": {
            "type": "number",
            "description": "Cod Item para controlar quantidade utilizada de cada opcao/codigoBarras"
          },
          "limitaItemUso": {
            "type": "number",
            "description": "limita utilizacao do item.codgigoBarras a X em uso por vez. No caso, envelopes, inners,..."
          },
          "processoEtapaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<ProcessoEtapaQuestao>"
      },
      "Etapa": {
        "title": "Etapa",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "abreviatura": {
            "type": "string"
          },
          "sequencia": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "etapaBufferPosterior": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "Prioridade": {
        "title": "Prioridade",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "tempoHr": {
            "type": "number"
          },
          "default": {
            "type": "boolean"
          },
          "notificacaoEmHr": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewPrioridade": {
        "title": "NewPrioridade",
        "type": "object",
        "description": "(tsType: Omit<Prioridade, 'id'>, schemaOptions: { title: 'NewPrioridade', exclude: [ 'id' ] })",
        "properties": {
          "descricao": {
            "type": "string"
          },
          "tempoHr": {
            "type": "number"
          },
          "default": {
            "type": "boolean"
          },
          "notificacaoEmHr": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Prioridade, 'id'>"
      },
      "PrioridadePartial": {
        "title": "PrioridadePartial",
        "type": "object",
        "description": "(tsType: Partial<Prioridade>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "tempoHr": {
            "type": "number"
          },
          "default": {
            "type": "boolean"
          },
          "notificacaoEmHr": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Prioridade>"
      },
      "NewPneuModelo": {
        "title": "NewPneuModelo",
        "type": "object",
        "description": "(tsType: Omit<PneuModelo, 'id'>, schemaOptions: { title: 'NewPneuModelo', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "pneuFabricanteId": {
            "type": "number"
          },
          "glbPneuModeloId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<PneuModelo, 'id'>"
      },
      "PneuModeloPartial": {
        "title": "PneuModeloPartial",
        "type": "object",
        "description": "(tsType: Partial<PneuModelo>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "pneuFabricanteId": {
            "type": "number"
          },
          "glbPneuModeloId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<PneuModelo>"
      },
      "PneuFabricante": {
        "title": "PneuFabricante",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "glbFabricanteId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewPneuMedida": {
        "title": "NewPneuMedida",
        "type": "object",
        "description": "(tsType: Omit<PneuMedida, 'id'>, schemaOptions: { title: 'NewPneuMedida', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "largura": {
            "type": "number"
          },
          "raio": {
            "type": "number"
          },
          "construcao": {
            "type": "string"
          },
          "diametro": {
            "type": "number"
          },
          "carga": {
            "type": "number"
          },
          "velocidade": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "glbPneuMedidaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<PneuMedida, 'id'>"
      },
      "PneuMedidaPartial": {
        "title": "PneuMedidaPartial",
        "type": "object",
        "description": "(tsType: Partial<PneuMedida>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "largura": {
            "type": "number"
          },
          "raio": {
            "type": "number"
          },
          "construcao": {
            "type": "string"
          },
          "diametro": {
            "type": "number"
          },
          "carga": {
            "type": "number"
          },
          "velocidade": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "glbPneuMedidaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<PneuMedida>"
      },
      "NewPneuFabricante": {
        "title": "NewPneuFabricante",
        "type": "object",
        "description": "(tsType: Omit<PneuFabricante, 'id'>, schemaOptions: { title: 'NewPneuFabricante', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "glbFabricanteId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<PneuFabricante, 'id'>"
      },
      "PneuFabricantePartial": {
        "title": "PneuFabricantePartial",
        "type": "object",
        "description": "(tsType: Partial<PneuFabricante>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "glbFabricanteId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<PneuFabricante>"
      },
      "NewPneuModeloInPneuFabricante": {
        "title": "NewPneuModeloInPneuFabricante",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<PneuModelo, 'id'>, 'pneuFabricanteId'>, schemaOptions: { title: 'NewPneuModeloInPneuFabricante', exclude: [ 'id' ], optional: [ 'pneuFabricanteId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "pneuFabricanteId": {
            "type": "number"
          },
          "glbPneuModeloId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<PneuModelo, 'id'>, 'pneuFabricanteId'>"
      },
      "Parametro": {
        "title": "Parametro",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "chave": {
            "type": "string"
          },
          "area": {
            "type": "number"
          },
          "setorId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "nivelSeguranca": {
            "type": "string"
          },
          "observacoes": {
            "type": "string"
          },
          "estabelecimento": {
            "type": "string"
          },
          "app": {
            "type": "string"
          },
          "snOuId": {
            "type": "string"
          },
          "versaoApp": {
            "type": "string"
          },
          "tipoValor": {
            "type": "number"
          },
          "valor0Int": {
            "type": "number"
          },
          "valor1Dec": {
            "type": "number"
          },
          "valor2Str": {
            "type": "string"
          },
          "valor3Bool": {
            "type": "boolean"
          },
          "valor4Dh": {
            "type": "string",
            "format": "date-time"
          },
          "parametroInterno": {
            "type": "boolean"
          }
        },
        "required": [
          "area",
          "setorId",
          "estacaoTrabalhoId",
          "tipoValor",
          "valor2Str"
        ],
        "additionalProperties": false
      },
      "NewParametro": {
        "title": "NewParametro",
        "type": "object",
        "description": "(tsType: Omit<Parametro, 'id'>, schemaOptions: { title: 'NewParametro', exclude: [ 'id' ] })",
        "properties": {
          "chave": {
            "type": "string"
          },
          "area": {
            "type": "number"
          },
          "setorId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "nivelSeguranca": {
            "type": "string"
          },
          "observacoes": {
            "type": "string"
          },
          "estabelecimento": {
            "type": "string"
          },
          "app": {
            "type": "string"
          },
          "snOuId": {
            "type": "string"
          },
          "versaoApp": {
            "type": "string"
          },
          "tipoValor": {
            "type": "number"
          },
          "valor0Int": {
            "type": "number"
          },
          "valor1Dec": {
            "type": "number"
          },
          "valor2Str": {
            "type": "string"
          },
          "valor3Bool": {
            "type": "boolean"
          },
          "valor4Dh": {
            "type": "string",
            "format": "date-time"
          },
          "parametroInterno": {
            "type": "boolean"
          }
        },
        "required": [
          "area",
          "setorId",
          "estacaoTrabalhoId",
          "tipoValor",
          "valor2Str"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<Parametro, 'id'>"
      },
      "ParametroWithRelations": {
        "title": "ParametroWithRelations",
        "type": "object",
        "description": "(tsType: ParametroWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "chave": {
            "type": "string"
          },
          "area": {
            "type": "number"
          },
          "setorId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "nivelSeguranca": {
            "type": "string"
          },
          "observacoes": {
            "type": "string"
          },
          "estabelecimento": {
            "type": "string"
          },
          "app": {
            "type": "string"
          },
          "snOuId": {
            "type": "string"
          },
          "versaoApp": {
            "type": "string"
          },
          "tipoValor": {
            "type": "number"
          },
          "valor0Int": {
            "type": "number"
          },
          "valor1Dec": {
            "type": "number"
          },
          "valor2Str": {
            "type": "string"
          },
          "valor3Bool": {
            "type": "boolean"
          },
          "valor4Dh": {
            "type": "string",
            "format": "date-time"
          },
          "parametroInterno": {
            "type": "boolean"
          }
        },
        "required": [
          "area",
          "setorId",
          "estacaoTrabalhoId",
          "tipoValor",
          "valor2Str"
        ],
        "additionalProperties": false,
        "x-typescript-type": "ParametroWithRelations"
      },
      "ParametroPartial": {
        "title": "ParametroPartial",
        "type": "object",
        "description": "(tsType: Partial<Parametro>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "chave": {
            "type": "string"
          },
          "area": {
            "type": "number"
          },
          "setorId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "nivelSeguranca": {
            "type": "string"
          },
          "observacoes": {
            "type": "string"
          },
          "estabelecimento": {
            "type": "string"
          },
          "app": {
            "type": "string"
          },
          "snOuId": {
            "type": "string"
          },
          "versaoApp": {
            "type": "string"
          },
          "tipoValor": {
            "type": "number"
          },
          "valor0Int": {
            "type": "number"
          },
          "valor1Dec": {
            "type": "number"
          },
          "valor2Str": {
            "type": "string"
          },
          "valor3Bool": {
            "type": "boolean"
          },
          "valor4Dh": {
            "type": "string",
            "format": "date-time"
          },
          "parametroInterno": {
            "type": "boolean"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Parametro>"
      },
      "OrdemServico": {
        "title": "OrdemServico",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "ordemServicoId": {
            "type": "string"
          },
          "ordemServicoSequencia": {
            "type": "string"
          },
          "descricao": {
            "type": "string"
          },
          "DTChegada": {
            "type": "string",
            "format": "date-time"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTSaida": {
            "type": "string",
            "format": "date-time"
          },
          "dot": {
            "type": "string"
          },
          "marcaFogo": {
            "type": "string"
          },
          "vida": {
            "type": "number"
          },
          "etapaAtual": {
            "type": "number"
          },
          "DTUltimaEtapa": {
            "type": "string",
            "format": "date-time"
          },
          "erpOSId": {
            "type": "number"
          },
          "teveRetrabalho": {
            "type": "boolean"
          },
          "larguraBandaAplicada": {
            "type": "number"
          },
          "validacaoBanda": {
            "type": "number"
          },
          "legadoPneuFabricante": {
            "type": "string"
          },
          "legadoPneuModelo": {
            "type": "string"
          },
          "legadoPneuMedida": {
            "type": "string"
          },
          "legadoBandaId": {
            "type": "string"
          },
          "legadoBanda": {
            "type": "string"
          },
          "legadoBandaLargura": {
            "type": "number"
          },
          "legadoOrdemServicoSequencia": {
            "type": "string"
          },
          "legadoDHProducao": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDHFaturamento": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDTPrevColeta": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDHLocalizacao": {
            "type": "string",
            "format": "date-time"
          },
          "legadoProduzido": {
            "type": "boolean"
          },
          "legadoFaturado": {
            "type": "boolean"
          },
          "legadoRecusado": {
            "type": "boolean"
          },
          "legadoLocalizacao": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "pneuModeloId": {
            "type": "number"
          },
          "bandaId": {
            "type": "number"
          },
          "processoId": {
            "type": "number"
          },
          "pneuMedidaId": {
            "type": "number"
          },
          "statusOrdemServicoId": {
            "type": "number"
          },
          "clienteId": {
            "type": "number"
          },
          "servicoId": {
            "type": "number"
          },
          "prioridadeId": {
            "type": "number"
          },
          "itemIdBandaAplicada": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewOrdemServico": {
        "title": "NewOrdemServico",
        "type": "object",
        "description": "(tsType: Omit<OrdemServico, 'id'>, schemaOptions: { title: 'NewOrdemServico', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "ordemServicoId": {
            "type": "string"
          },
          "ordemServicoSequencia": {
            "type": "string"
          },
          "descricao": {
            "type": "string"
          },
          "DTChegada": {
            "type": "string",
            "format": "date-time"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTSaida": {
            "type": "string",
            "format": "date-time"
          },
          "dot": {
            "type": "string"
          },
          "marcaFogo": {
            "type": "string"
          },
          "vida": {
            "type": "number"
          },
          "etapaAtual": {
            "type": "number"
          },
          "DTUltimaEtapa": {
            "type": "string",
            "format": "date-time"
          },
          "erpOSId": {
            "type": "number"
          },
          "teveRetrabalho": {
            "type": "boolean"
          },
          "larguraBandaAplicada": {
            "type": "number"
          },
          "validacaoBanda": {
            "type": "number"
          },
          "legadoPneuFabricante": {
            "type": "string"
          },
          "legadoPneuModelo": {
            "type": "string"
          },
          "legadoPneuMedida": {
            "type": "string"
          },
          "legadoBandaId": {
            "type": "string"
          },
          "legadoBanda": {
            "type": "string"
          },
          "legadoBandaLargura": {
            "type": "number"
          },
          "legadoOrdemServicoSequencia": {
            "type": "string"
          },
          "legadoDHProducao": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDHFaturamento": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDTPrevColeta": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDHLocalizacao": {
            "type": "string",
            "format": "date-time"
          },
          "legadoProduzido": {
            "type": "boolean"
          },
          "legadoFaturado": {
            "type": "boolean"
          },
          "legadoRecusado": {
            "type": "boolean"
          },
          "legadoLocalizacao": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "pneuModeloId": {
            "type": "number"
          },
          "bandaId": {
            "type": "number"
          },
          "processoId": {
            "type": "number"
          },
          "pneuMedidaId": {
            "type": "number"
          },
          "statusOrdemServicoId": {
            "type": "number"
          },
          "clienteId": {
            "type": "number"
          },
          "servicoId": {
            "type": "number"
          },
          "prioridadeId": {
            "type": "number"
          },
          "itemIdBandaAplicada": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<OrdemServico, 'id'>"
      },
      "OrdemServicoRapida": {
        "title": "OrdemServicoRapida",
        "type": "object",
        "properties": {
          "estabelecimentoId": {
            "type": "number"
          },
          "almofada": {
            "type": "string"
          },
          "autoclaveId": {
            "type": "number"
          },
          "ciclo": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "envelope": {
            "type": "string"
          },
          "inner": {
            "type": "string"
          },
          "os": {
            "type": "string"
          },
          "maquinaId": {
            "type": "number"
          },
          "maquinaCiclo": {
            "type": "number"
          },
          "maquinaPosicao": {
            "type": "number"
          },
          "etapaId": {
            "type": "number"
          },
          "processoEtapaId": {
            "type": "number"
          },
          "processoId": {
            "type": "number"
          },
          "reprocesso": {
            "type": "boolean"
          },
          "sacoDeAr": {
            "type": "string"
          },
          "dot": {
            "type": "string"
          },
          "marcaFogo": {
            "type": "string"
          },
          "pneuFabricanteId": {
            "type": "number"
          },
          "pneuFabricante": {
            "type": "string"
          },
          "pneuModeloId": {
            "type": "number"
          },
          "pneuModelo": {
            "type": "string"
          },
          "pneuMedidaId": {
            "type": "number"
          },
          "pneuMedida": {
            "type": "string"
          },
          "bandaId": {
            "type": "number"
          },
          "banda": {
            "type": "string"
          },
          "vida": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "OrdemServicoEtapaExcluding_id_": {
        "title": "OrdemServicoEtapaExcluding_id_",
        "type": "object",
        "description": "(tsType: Omit<OrdemServicoEtapa, 'id'>, schemaOptions: { exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "DTChegada": {
            "type": "string",
            "format": "date-time"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimProducao": {
            "type": "string",
            "format": "date-time"
          },
          "maquinaId": {
            "type": "number"
          },
          "maquinaCiclo": {
            "type": "number"
          },
          "maquinaPosicao": {
            "type": "number"
          },
          "resultado": {
            "type": "number"
          },
          "estabId": {
            "type": "number"
          },
          "os": {
            "type": "string"
          },
          "localId": {
            "type": "number"
          },
          "erpOSEId": {
            "type": "number"
          },
          "WSEnvio2ERP": {
            "type": "number"
          },
          "ERPResposta": {
            "type": "string"
          },
          "ERPDh": {
            "type": "string",
            "format": "date-time"
          },
          "observacoes": {
            "type": "string"
          },
          "ordemServicoId": {
            "type": "number"
          },
          "etapaId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          },
          "processoEtapaId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<OrdemServicoEtapa, 'id'>"
      },
      "OrdemServicoPartial": {
        "title": "OrdemServicoPartial",
        "type": "object",
        "description": "(tsType: Partial<OrdemServico>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "ordemServicoId": {
            "type": "string"
          },
          "ordemServicoSequencia": {
            "type": "string"
          },
          "descricao": {
            "type": "string"
          },
          "DTChegada": {
            "type": "string",
            "format": "date-time"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTSaida": {
            "type": "string",
            "format": "date-time"
          },
          "dot": {
            "type": "string"
          },
          "marcaFogo": {
            "type": "string"
          },
          "vida": {
            "type": "number"
          },
          "etapaAtual": {
            "type": "number"
          },
          "DTUltimaEtapa": {
            "type": "string",
            "format": "date-time"
          },
          "erpOSId": {
            "type": "number"
          },
          "teveRetrabalho": {
            "type": "boolean"
          },
          "larguraBandaAplicada": {
            "type": "number"
          },
          "validacaoBanda": {
            "type": "number"
          },
          "legadoPneuFabricante": {
            "type": "string"
          },
          "legadoPneuModelo": {
            "type": "string"
          },
          "legadoPneuMedida": {
            "type": "string"
          },
          "legadoBandaId": {
            "type": "string"
          },
          "legadoBanda": {
            "type": "string"
          },
          "legadoBandaLargura": {
            "type": "number"
          },
          "legadoOrdemServicoSequencia": {
            "type": "string"
          },
          "legadoDHProducao": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDHFaturamento": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDTPrevColeta": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDHLocalizacao": {
            "type": "string",
            "format": "date-time"
          },
          "legadoProduzido": {
            "type": "boolean"
          },
          "legadoFaturado": {
            "type": "boolean"
          },
          "legadoRecusado": {
            "type": "boolean"
          },
          "legadoLocalizacao": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "pneuModeloId": {
            "type": "number"
          },
          "bandaId": {
            "type": "number"
          },
          "processoId": {
            "type": "number"
          },
          "pneuMedidaId": {
            "type": "number"
          },
          "statusOrdemServicoId": {
            "type": "number"
          },
          "clienteId": {
            "type": "number"
          },
          "servicoId": {
            "type": "number"
          },
          "prioridadeId": {
            "type": "number"
          },
          "itemIdBandaAplicada": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OrdemServico>"
      },
      "StatusOrdemServico": {
        "title": "StatusOrdemServico",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "descricaoIntegrador": {
            "type": "string"
          },
          "tipo": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "situacaoOsId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "Servico": {
        "title": "Servico",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "processoId": {
            "type": "number"
          },
          "bandaId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewOrdemServicoEtapaInOrdemServico": {
        "title": "NewOrdemServicoEtapaInOrdemServico",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<OrdemServicoEtapa, 'id'>, 'ordemServicoId'>, schemaOptions: { title: 'NewOrdemServicoEtapaInOrdemServico', exclude: [ 'id' ], optional: [ 'ordemServicoId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "DTChegada": {
            "type": "string",
            "format": "date-time"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimProducao": {
            "type": "string",
            "format": "date-time"
          },
          "maquinaId": {
            "type": "number"
          },
          "maquinaCiclo": {
            "type": "number"
          },
          "maquinaPosicao": {
            "type": "number"
          },
          "resultado": {
            "type": "number"
          },
          "estabId": {
            "type": "number"
          },
          "os": {
            "type": "string"
          },
          "localId": {
            "type": "number"
          },
          "erpOSEId": {
            "type": "number"
          },
          "WSEnvio2ERP": {
            "type": "number"
          },
          "ERPResposta": {
            "type": "string"
          },
          "ERPDh": {
            "type": "string",
            "format": "date-time"
          },
          "observacoes": {
            "type": "string"
          },
          "ordemServicoId": {
            "type": "number"
          },
          "etapaId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          },
          "processoEtapaId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<OrdemServicoEtapa, 'id'>, 'ordemServicoId'>"
      },
      "OrdemServicoEtapaPartial": {
        "title": "OrdemServicoEtapaPartial",
        "type": "object",
        "description": "(tsType: Partial<OrdemServicoEtapa>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "DTChegada": {
            "type": "string",
            "format": "date-time"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimProducao": {
            "type": "string",
            "format": "date-time"
          },
          "maquinaId": {
            "type": "number"
          },
          "maquinaCiclo": {
            "type": "number"
          },
          "maquinaPosicao": {
            "type": "number"
          },
          "resultado": {
            "type": "number"
          },
          "estabId": {
            "type": "number"
          },
          "os": {
            "type": "string"
          },
          "localId": {
            "type": "number"
          },
          "erpOSEId": {
            "type": "number"
          },
          "WSEnvio2ERP": {
            "type": "number"
          },
          "ERPResposta": {
            "type": "string"
          },
          "ERPDh": {
            "type": "string",
            "format": "date-time"
          },
          "observacoes": {
            "type": "string"
          },
          "ordemServicoId": {
            "type": "number"
          },
          "etapaId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          },
          "processoEtapaId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OrdemServicoEtapa>"
      },
      "Item": {
        "title": "Item",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "larguraBanda": {
            "type": "number"
          },
          "codMaterialUnique": {
            "type": "number"
          },
          "grupoMaterialUnique": {
            "type": "string"
          },
          "tipoControleEstoque": {
            "type": "number",
            "description": "0: sem controle estque  1: controle por item  2: controle por codigo de barras"
          },
          "codigoBarras": {
            "type": "string"
          },
          "bandaId": {
            "type": "number"
          },
          "tipoItemId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "CorteDeBanda": {},
      "NewOrdemServicoEtapa": {
        "title": "NewOrdemServicoEtapa",
        "type": "object",
        "description": "(tsType: Omit<OrdemServicoEtapa, 'id'>, schemaOptions: { title: 'NewOrdemServicoEtapa', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "DTChegada": {
            "type": "string",
            "format": "date-time"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimProducao": {
            "type": "string",
            "format": "date-time"
          },
          "maquinaId": {
            "type": "number"
          },
          "maquinaCiclo": {
            "type": "number"
          },
          "maquinaPosicao": {
            "type": "number"
          },
          "resultado": {
            "type": "number"
          },
          "estabId": {
            "type": "number"
          },
          "os": {
            "type": "string"
          },
          "localId": {
            "type": "number"
          },
          "erpOSEId": {
            "type": "number"
          },
          "WSEnvio2ERP": {
            "type": "number"
          },
          "ERPResposta": {
            "type": "string"
          },
          "ERPDh": {
            "type": "string",
            "format": "date-time"
          },
          "observacoes": {
            "type": "string"
          },
          "ordemServicoId": {
            "type": "number"
          },
          "etapaId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          },
          "processoEtapaId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<OrdemServicoEtapa, 'id'>"
      },
      "OrdemServicoEtapaQuestao": {
        "title": "OrdemServicoEtapaQuestao",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "resposta": {
            "type": "string"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTResposta": {
            "type": "string",
            "format": "date-time"
          },
          "processoEtapaId": {
            "type": "number"
          },
          "ordemServicoId": {
            "type": "number"
          },
          "os": {
            "type": "string"
          },
          "estabId": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "localOSEId": {
            "type": "number"
          },
          "erpOSEQId": {
            "type": "number"
          },
          "WSEnvio2ERP": {
            "type": "number"
          },
          "ERPResposta": {
            "type": "string"
          },
          "ERPDh": {
            "type": "string",
            "format": "date-time"
          },
          "ordemServicoEtapaId": {
            "type": "number"
          },
          "processoEtapaQuestaoId": {
            "type": "number"
          },
          "processoEtapaQuestaoRespostaId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewOrdemServicoEtapaQuestao": {
        "title": "NewOrdemServicoEtapaQuestao",
        "type": "object",
        "description": "(tsType: Omit<OrdemServicoEtapaQuestao, 'id'>, schemaOptions: { title: 'NewOrdemServicoEtapaQuestao', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "resposta": {
            "type": "string"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTResposta": {
            "type": "string",
            "format": "date-time"
          },
          "processoEtapaId": {
            "type": "number"
          },
          "ordemServicoId": {
            "type": "number"
          },
          "os": {
            "type": "string"
          },
          "estabId": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "localOSEId": {
            "type": "number"
          },
          "erpOSEQId": {
            "type": "number"
          },
          "WSEnvio2ERP": {
            "type": "number"
          },
          "ERPResposta": {
            "type": "string"
          },
          "ERPDh": {
            "type": "string",
            "format": "date-time"
          },
          "ordemServicoEtapaId": {
            "type": "number"
          },
          "processoEtapaQuestaoId": {
            "type": "number"
          },
          "processoEtapaQuestaoRespostaId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<OrdemServicoEtapaQuestao, 'id'>"
      },
      "OrdemServicoEtapaQuestaoPartial": {
        "title": "OrdemServicoEtapaQuestaoPartial",
        "type": "object",
        "description": "(tsType: Partial<OrdemServicoEtapaQuestao>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "resposta": {
            "type": "string"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTResposta": {
            "type": "string",
            "format": "date-time"
          },
          "processoEtapaId": {
            "type": "number"
          },
          "ordemServicoId": {
            "type": "number"
          },
          "os": {
            "type": "string"
          },
          "estabId": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "localOSEId": {
            "type": "number"
          },
          "erpOSEQId": {
            "type": "number"
          },
          "WSEnvio2ERP": {
            "type": "number"
          },
          "ERPResposta": {
            "type": "string"
          },
          "ERPDh": {
            "type": "string",
            "format": "date-time"
          },
          "ordemServicoEtapaId": {
            "type": "number"
          },
          "processoEtapaQuestaoId": {
            "type": "number"
          },
          "processoEtapaQuestaoRespostaId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OrdemServicoEtapaQuestao>"
      },
      "EstacaoTrabalho": {
        "title": "EstacaoTrabalho",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "fabricante": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "numserie": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "solicitaOSAntes": {
            "type": "boolean"
          },
          "i4ColetorDebug": {
            "type": "boolean"
          },
          "loginDh": {
            "type": "string",
            "format": "date-time"
          },
          "OSAtual": {
            "type": "string"
          },
          "osId": {
            "type": "number"
          },
          "OSDhIni": {
            "type": "string",
            "format": "date-time"
          },
          "OSDhFim": {
            "type": "string",
            "format": "date-time"
          },
          "etapaId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewOrdemServicoEtapaQuestaoInOrdemServicoEtapa": {
        "title": "NewOrdemServicoEtapaQuestaoInOrdemServicoEtapa",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<OrdemServicoEtapaQuestao, 'id'>, 'ordemServicoEtapaId'>, schemaOptions: { title: 'NewOrdemServicoEtapaQuestaoInOrdemServicoEtapa', exclude: [ 'id' ], optional: [ 'ordemServicoEtapaId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "resposta": {
            "type": "string"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTResposta": {
            "type": "string",
            "format": "date-time"
          },
          "processoEtapaId": {
            "type": "number"
          },
          "ordemServicoId": {
            "type": "number"
          },
          "os": {
            "type": "string"
          },
          "estabId": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "localOSEId": {
            "type": "number"
          },
          "erpOSEQId": {
            "type": "number"
          },
          "WSEnvio2ERP": {
            "type": "number"
          },
          "ERPResposta": {
            "type": "string"
          },
          "ERPDh": {
            "type": "string",
            "format": "date-time"
          },
          "ordemServicoEtapaId": {
            "type": "number"
          },
          "processoEtapaQuestaoId": {
            "type": "number"
          },
          "processoEtapaQuestaoRespostaId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<OrdemServicoEtapaQuestao, 'id'>, 'ordemServicoEtapaId'>"
      },
      "Cliente": {
        "title": "Cliente",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "cpfcnpj": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewOperador": {
        "title": "NewOperador",
        "type": "object",
        "description": "(tsType: Omit<Operador, 'id'>, schemaOptions: { title: 'NewOperador', exclude: [ 'id' ] })",
        "properties": {
          "nome": {
            "type": "string"
          },
          "abreviatura": {
            "type": "string"
          },
          "alertaAposXHoras": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Operador, 'id'>"
      },
      "OperadorPartial": {
        "title": "OperadorPartial",
        "type": "object",
        "description": "(tsType: Partial<Operador>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "nome": {
            "type": "string"
          },
          "abreviatura": {
            "type": "string"
          },
          "alertaAposXHoras": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Operador>"
      },
      "OperadorLogin": {
        "title": "OperadorLogin",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "dt": {
            "type": "string",
            "format": "date-time"
          },
          "dtLogout": {
            "type": "string",
            "format": "date-time"
          },
          "operadorId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewOperadorLogin": {
        "title": "NewOperadorLogin",
        "type": "object",
        "description": "(tsType: Omit<OperadorLogin, 'id'>, schemaOptions: { title: 'NewOperadorLogin', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "dt": {
            "type": "string",
            "format": "date-time"
          },
          "dtLogout": {
            "type": "string",
            "format": "date-time"
          },
          "operadorId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<OperadorLogin, 'id'>"
      },
      "OperadorLoginWithRelations": {
        "title": "OperadorLoginWithRelations",
        "type": "object",
        "description": "(tsType: OperadorLoginWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "dt": {
            "type": "string",
            "format": "date-time"
          },
          "dtLogout": {
            "type": "string",
            "format": "date-time"
          },
          "operadorId": {
            "type": "number"
          },
          "operador": {
            "$ref": "#/components/schemas/OperadorWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "OperadorLoginWithRelations"
      },
      "OperadorLoginPartial": {
        "title": "OperadorLoginPartial",
        "type": "object",
        "description": "(tsType: Partial<OperadorLogin>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "dt": {
            "type": "string",
            "format": "date-time"
          },
          "dtLogout": {
            "type": "string",
            "format": "date-time"
          },
          "operadorId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperadorLogin>"
      },
      "OperadorLoginEstacao": {
        "title": "OperadorLoginEstacao",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "dt": {
            "type": "string",
            "format": "date-time"
          },
          "tipo": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewOperadorLoginEstacao": {
        "title": "NewOperadorLoginEstacao",
        "type": "object",
        "description": "(tsType: Omit<OperadorLoginEstacao, 'id'>, schemaOptions: { title: 'NewOperadorLoginEstacao', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "dt": {
            "type": "string",
            "format": "date-time"
          },
          "tipo": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<OperadorLoginEstacao, 'id'>"
      },
      "OperadorLoginEstacaoWithRelations": {
        "title": "OperadorLoginEstacaoWithRelations",
        "type": "object",
        "description": "(tsType: OperadorLoginEstacaoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "dt": {
            "type": "string",
            "format": "date-time"
          },
          "tipo": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          },
          "operador": {
            "$ref": "#/components/schemas/OperadorWithRelations"
          },
          "foreignKey": {},
          "estacaoTrabalho": {
            "$ref": "#/components/schemas/EstacaoTrabalhoWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "OperadorLoginEstacaoWithRelations"
      },
      "OperadorLoginEstacaoPartial": {
        "title": "OperadorLoginEstacaoPartial",
        "type": "object",
        "description": "(tsType: Partial<OperadorLoginEstacao>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "dt": {
            "type": "string",
            "format": "date-time"
          },
          "tipo": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          },
          "estacaoTrabalhoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<OperadorLoginEstacao>"
      },
      "Meta": {
        "title": "Meta",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "ano": {
            "type": "number"
          },
          "mes": {
            "type": "number"
          },
          "turno": {
            "type": "number"
          },
          "diasUteis": {
            "type": "number"
          },
          "objetivo": {
            "type": "number"
          },
          "metaCategoriaId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewMeta": {
        "title": "NewMeta",
        "type": "object",
        "description": "(tsType: Omit<Meta, 'id'>, schemaOptions: { title: 'NewMeta', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "ano": {
            "type": "number"
          },
          "mes": {
            "type": "number"
          },
          "turno": {
            "type": "number"
          },
          "diasUteis": {
            "type": "number"
          },
          "objetivo": {
            "type": "number"
          },
          "metaCategoriaId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Meta, 'id'>"
      },
      "MetaCategoriaWithRelations": {
        "title": "MetaCategoriaWithRelations",
        "type": "object",
        "description": "(tsType: MetaCategoriaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "tipoMeta": {
            "type": "number",
            "description": "1:Meta positiva-atingir   2:Meta negativa(qto maior, pior)"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "MetaCategoriaWithRelations"
      },
      "MetaWithRelations": {
        "title": "MetaWithRelations",
        "type": "object",
        "description": "(tsType: MetaWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "ano": {
            "type": "number"
          },
          "mes": {
            "type": "number"
          },
          "turno": {
            "type": "number"
          },
          "diasUteis": {
            "type": "number"
          },
          "objetivo": {
            "type": "number"
          },
          "metaCategoriaId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "metaCategoria": {
            "$ref": "#/components/schemas/MetaCategoriaWithRelations"
          },
          "foreignKey": {},
          "estabelecimento": {
            "$ref": "#/components/schemas/EstabelecimentoWithRelations"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "MetaWithRelations"
      },
      "MetaPartial": {
        "title": "MetaPartial",
        "type": "object",
        "description": "(tsType: Partial<Meta>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "ano": {
            "type": "number"
          },
          "mes": {
            "type": "number"
          },
          "turno": {
            "type": "number"
          },
          "diasUteis": {
            "type": "number"
          },
          "objetivo": {
            "type": "number"
          },
          "metaCategoriaId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Meta>"
      },
      "MetaCategoria": {
        "title": "MetaCategoria",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "tipoMeta": {
            "type": "number",
            "description": "1:Meta positiva-atingir   2:Meta negativa(qto maior, pior)"
          }
        },
        "additionalProperties": false
      },
      "NewMetaCategoria": {
        "title": "NewMetaCategoria",
        "type": "object",
        "description": "(tsType: Omit<MetaCategoria, 'id'>, schemaOptions: { title: 'NewMetaCategoria', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "tipoMeta": {
            "type": "number",
            "description": "1:Meta positiva-atingir   2:Meta negativa(qto maior, pior)"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<MetaCategoria, 'id'>"
      },
      "MetaCategoriaPartial": {
        "title": "MetaCategoriaPartial",
        "type": "object",
        "description": "(tsType: Partial<MetaCategoria>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "tipoMeta": {
            "type": "number",
            "description": "1:Meta positiva-atingir   2:Meta negativa(qto maior, pior)"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<MetaCategoria>"
      },
      "LoginTech": {
        "title": "LoginTech",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "numSerie": {
            "type": "number"
          },
          "autenticacao": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "dhGerarSenha": {
            "type": "string",
            "format": "date-time"
          },
          "cliente": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewLoginTech": {
        "title": "NewLoginTech",
        "type": "object",
        "description": "(tsType: Omit<LoginTech, 'id'>, schemaOptions: { title: 'NewLoginTech', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "numSerie": {
            "type": "number"
          },
          "autenticacao": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "dhGerarSenha": {
            "type": "string",
            "format": "date-time"
          },
          "cliente": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<LoginTech, 'id'>"
      },
      "LoginTechWithRelations": {
        "title": "LoginTechWithRelations",
        "type": "object",
        "description": "(tsType: LoginTechWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "numSerie": {
            "type": "number"
          },
          "autenticacao": {
            "type": "number"
          },
          "userId": {
            "type": "number"
          },
          "dhGerarSenha": {
            "type": "string",
            "format": "date-time"
          },
          "cliente": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "LoginTechWithRelations"
      },
      "NewItem": {
        "title": "NewItem",
        "type": "object",
        "description": "(tsType: Omit<Item, 'id'>, schemaOptions: { title: 'NewItem', exclude: [ 'id' ] })",
        "properties": {
          "descricao": {
            "type": "string"
          },
          "larguraBanda": {
            "type": "number"
          },
          "codMaterialUnique": {
            "type": "number"
          },
          "grupoMaterialUnique": {
            "type": "string"
          },
          "tipoControleEstoque": {
            "type": "number",
            "description": "0: sem controle estque  1: controle por item  2: controle por codigo de barras"
          },
          "codigoBarras": {
            "type": "string"
          },
          "bandaId": {
            "type": "number"
          },
          "tipoItemId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Item, 'id'>"
      },
      "ItemPartial": {
        "title": "ItemPartial",
        "type": "object",
        "description": "(tsType: Partial<Item>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "larguraBanda": {
            "type": "number"
          },
          "codMaterialUnique": {
            "type": "number"
          },
          "grupoMaterialUnique": {
            "type": "string"
          },
          "tipoControleEstoque": {
            "type": "number",
            "description": "0: sem controle estque  1: controle por item  2: controle por codigo de barras"
          },
          "codigoBarras": {
            "type": "string"
          },
          "bandaId": {
            "type": "number"
          },
          "tipoItemId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Item>"
      },
      "TipoItem": {
        "title": "TipoItem",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "GlbRaspaReceita": {
        "title": "GlbRaspaReceita",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "larguraRaspagem": {
            "type": "number"
          },
          "larguraBanda": {
            "type": "number"
          },
          "vidaPneuRaspagem": {
            "type": "number"
          },
          "raioRaspagem": {
            "type": "number"
          },
          "perimetro": {
            "type": "number"
          },
          "anguloOmbro": {
            "type": "number"
          },
          "comprimentoOmbro": {
            "type": "number"
          },
          "raioOmbro": {
            "type": "number"
          },
          "receitaMensagem": {
            "type": "string"
          },
          "usuarioCriador": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "monPerimetroFinalBons": {
            "type": "string"
          },
          "glbPneuModeloId": {
            "type": "number"
          },
          "glbPneuMedidaId": {
            "type": "number"
          },
          "glbBandaId": {
            "type": "number"
          },
          "glbRaspaReceitaCategoriaId": {
            "type": "number"
          },
          "glbRaspaReceitaSituacaoId": {
            "type": "number"
          },
          "contadorRaspagens": {
            "type": "number"
          },
          "contadorPneusBons": {
            "type": "number"
          },
          "contadorPneusRegular": {
            "type": "number"
          },
          "contadorPneusRuins": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "New GlbRaspaReceita": {
        "title": "New GlbRaspaReceita",
        "type": "object",
        "description": "(tsType: Omit<GlbRaspaReceita, 'id'>, schemaOptions: { title: 'New GlbRaspaReceita', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "larguraRaspagem": {
            "type": "number"
          },
          "larguraBanda": {
            "type": "number"
          },
          "vidaPneuRaspagem": {
            "type": "number"
          },
          "raioRaspagem": {
            "type": "number"
          },
          "perimetro": {
            "type": "number"
          },
          "anguloOmbro": {
            "type": "number"
          },
          "comprimentoOmbro": {
            "type": "number"
          },
          "raioOmbro": {
            "type": "number"
          },
          "receitaMensagem": {
            "type": "string"
          },
          "usuarioCriador": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "monPerimetroFinalBons": {
            "type": "string"
          },
          "glbPneuModeloId": {
            "type": "number"
          },
          "glbPneuMedidaId": {
            "type": "number"
          },
          "glbBandaId": {
            "type": "number"
          },
          "glbRaspaReceitaCategoriaId": {
            "type": "number"
          },
          "glbRaspaReceitaSituacaoId": {
            "type": "number"
          },
          "contadorRaspagens": {
            "type": "number"
          },
          "contadorPneusBons": {
            "type": "number"
          },
          "contadorPneusRegular": {
            "type": "number"
          },
          "contadorPneusRuins": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<GlbRaspaReceita, 'id'>"
      },
      "GlbRaspaReceitaPartial": {
        "title": "GlbRaspaReceitaPartial",
        "type": "object",
        "description": "(tsType: Partial<GlbRaspaReceita>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "larguraRaspagem": {
            "type": "number"
          },
          "larguraBanda": {
            "type": "number"
          },
          "vidaPneuRaspagem": {
            "type": "number"
          },
          "raioRaspagem": {
            "type": "number"
          },
          "perimetro": {
            "type": "number"
          },
          "anguloOmbro": {
            "type": "number"
          },
          "comprimentoOmbro": {
            "type": "number"
          },
          "raioOmbro": {
            "type": "number"
          },
          "receitaMensagem": {
            "type": "string"
          },
          "usuarioCriador": {
            "type": "string"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "monPerimetroFinalBons": {
            "type": "string"
          },
          "glbPneuModeloId": {
            "type": "number"
          },
          "glbPneuMedidaId": {
            "type": "number"
          },
          "glbBandaId": {
            "type": "number"
          },
          "glbRaspaReceitaCategoriaId": {
            "type": "number"
          },
          "glbRaspaReceitaSituacaoId": {
            "type": "number"
          },
          "contadorRaspagens": {
            "type": "number"
          },
          "contadorPneusBons": {
            "type": "number"
          },
          "contadorPneusRegular": {
            "type": "number"
          },
          "contadorPneusRuins": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<GlbRaspaReceita>"
      },
      "GlbRaspaReceitaSituacao": {
        "title": "GlbRaspaReceitaSituacao",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewGlbRaspaReceitaSituacao": {
        "title": "NewGlbRaspaReceitaSituacao",
        "type": "object",
        "description": "(tsType: Omit<GlbRaspaReceitaSituacao, 'id'>, schemaOptions: { title: 'NewGlbRaspaReceitaSituacao', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<GlbRaspaReceitaSituacao, 'id'>"
      },
      "GlbRaspaReceitaSituacaoPartial": {
        "title": "GlbRaspaReceitaSituacaoPartial",
        "type": "object",
        "description": "(tsType: Partial<GlbRaspaReceitaSituacao>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<GlbRaspaReceitaSituacao>"
      },
      "GlbRaspaReceitaCategoria": {
        "title": "GlbRaspaReceitaCategoria",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewGlbRaspaReceitaCategoria": {
        "title": "NewGlbRaspaReceitaCategoria",
        "type": "object",
        "description": "(tsType: Omit<GlbRaspaReceitaCategoria, 'id'>, schemaOptions: { title: 'NewGlbRaspaReceitaCategoria', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<GlbRaspaReceitaCategoria, 'id'>"
      },
      "GlbRaspaReceitaCategoriaPartial": {
        "title": "GlbRaspaReceitaCategoriaPartial",
        "type": "object",
        "description": "(tsType: Partial<GlbRaspaReceitaCategoria>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<GlbRaspaReceitaCategoria>"
      },
      "GlbPneuModelo": {
        "title": "GlbPneuModelo",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "glbFabricanteId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewGlbPneuModelo": {
        "title": "NewGlbPneuModelo",
        "type": "object",
        "description": "(tsType: Omit<GlbPneuModelo, 'id'>, schemaOptions: { title: 'NewGlbPneuModelo', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "glbFabricanteId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<GlbPneuModelo, 'id'>"
      },
      "GlbPneuModeloPartial": {
        "title": "GlbPneuModeloPartial",
        "type": "object",
        "description": "(tsType: Partial<GlbPneuModelo>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "glbFabricanteId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<GlbPneuModelo>"
      },
      "GlbPneuMedida": {
        "title": "GlbPneuMedida",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "largura": {
            "type": "number"
          },
          "raio": {
            "type": "number"
          },
          "construcao": {
            "type": "string"
          },
          "diametro": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewGlbPneuMedida": {
        "title": "NewGlbPneuMedida",
        "type": "object",
        "description": "(tsType: Omit<GlbPneuMedida, 'id'>, schemaOptions: { title: 'NewGlbPneuMedida', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "largura": {
            "type": "number"
          },
          "raio": {
            "type": "number"
          },
          "construcao": {
            "type": "string"
          },
          "diametro": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<GlbPneuMedida, 'id'>"
      },
      "GlbPneuMedidaPartial": {
        "title": "GlbPneuMedidaPartial",
        "type": "object",
        "description": "(tsType: Partial<GlbPneuMedida>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "largura": {
            "type": "number"
          },
          "raio": {
            "type": "number"
          },
          "construcao": {
            "type": "string"
          },
          "diametro": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<GlbPneuMedida>"
      },
      "GlbParametro": {
        "title": "GlbParametro",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "chave": {
            "type": "string"
          },
          "app": {
            "type": "string"
          },
          "versaoApp": {
            "type": "number"
          },
          "tipoValor": {
            "type": "number"
          },
          "valor0Int": {
            "type": "number"
          },
          "valor1Dec": {
            "type": "number"
          },
          "valor2Str": {
            "type": "string"
          },
          "valor3Bool": {
            "type": "number"
          },
          "valor4Dh": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "NewGlbParametro": {
        "title": "NewGlbParametro",
        "type": "object",
        "description": "(tsType: Omit<GlbParametro, 'id'>, schemaOptions: { title: 'NewGlbParametro', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "chave": {
            "type": "string"
          },
          "app": {
            "type": "string"
          },
          "versaoApp": {
            "type": "number"
          },
          "tipoValor": {
            "type": "number"
          },
          "valor0Int": {
            "type": "number"
          },
          "valor1Dec": {
            "type": "number"
          },
          "valor2Str": {
            "type": "string"
          },
          "valor3Bool": {
            "type": "number"
          },
          "valor4Dh": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<GlbParametro, 'id'>"
      },
      "GlbParametroWithRelations": {
        "title": "GlbParametroWithRelations",
        "type": "object",
        "description": "(tsType: GlbParametroWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "chave": {
            "type": "string"
          },
          "app": {
            "type": "string"
          },
          "versaoApp": {
            "type": "number"
          },
          "tipoValor": {
            "type": "number"
          },
          "valor0Int": {
            "type": "number"
          },
          "valor1Dec": {
            "type": "number"
          },
          "valor2Str": {
            "type": "string"
          },
          "valor3Bool": {
            "type": "number"
          },
          "valor4Dh": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "GlbParametroWithRelations"
      },
      "GlbParametroPartial": {
        "title": "GlbParametroPartial",
        "type": "object",
        "description": "(tsType: Partial<GlbParametro>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "chave": {
            "type": "string"
          },
          "app": {
            "type": "string"
          },
          "versaoApp": {
            "type": "number"
          },
          "tipoValor": {
            "type": "number"
          },
          "valor0Int": {
            "type": "number"
          },
          "valor1Dec": {
            "type": "number"
          },
          "valor2Str": {
            "type": "string"
          },
          "valor3Bool": {
            "type": "number"
          },
          "valor4Dh": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<GlbParametro>"
      },
      "GlbFabricante": {
        "title": "GlbFabricante",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewGlbFabricante": {
        "title": "NewGlbFabricante",
        "type": "object",
        "description": "(tsType: Omit<GlbFabricante, 'id'>, schemaOptions: { title: 'NewGlbFabricante', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<GlbFabricante, 'id'>"
      },
      "GlbFabricantePartial": {
        "title": "GlbFabricantePartial",
        "type": "object",
        "description": "(tsType: Partial<GlbFabricante>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<GlbFabricante>"
      },
      "GlbBanda": {
        "title": "GlbBanda",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "largurasDisponiveis": {
            "type": "string"
          },
          "glbFabricanteId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewGlbBanda": {
        "title": "NewGlbBanda",
        "type": "object",
        "description": "(tsType: Omit<GlbBanda, 'id'>, schemaOptions: { title: 'NewGlbBanda', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "largurasDisponiveis": {
            "type": "string"
          },
          "glbFabricanteId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<GlbBanda, 'id'>"
      },
      "GlbBandaPartial": {
        "title": "GlbBandaPartial",
        "type": "object",
        "description": "(tsType: Partial<GlbBanda>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "largurasDisponiveis": {
            "type": "string"
          },
          "glbFabricanteId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<GlbBanda>"
      },
      "NewEtapa": {
        "title": "NewEtapa",
        "type": "object",
        "description": "(tsType: Omit<Etapa, 'id'>, schemaOptions: { title: 'NewEtapa', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "abreviatura": {
            "type": "string"
          },
          "sequencia": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "etapaBufferPosterior": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Etapa, 'id'>"
      },
      "EtapaPartial": {
        "title": "EtapaPartial",
        "type": "object",
        "description": "(tsType: Partial<Etapa>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "abreviatura": {
            "type": "string"
          },
          "sequencia": {
            "type": "number"
          },
          "legadoId": {
            "type": "string"
          },
          "etapaBufferPosterior": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Etapa>"
      },
      "NewEstacaoTrabalhoInEtapa": {
        "title": "NewEstacaoTrabalhoInEtapa",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<EstacaoTrabalho, 'id'>, 'etapaId'>, schemaOptions: { title: 'NewEstacaoTrabalhoInEtapa', exclude: [ 'id' ], optional: [ 'etapaId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "fabricante": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "numserie": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "solicitaOSAntes": {
            "type": "boolean"
          },
          "i4ColetorDebug": {
            "type": "boolean"
          },
          "loginDh": {
            "type": "string",
            "format": "date-time"
          },
          "OSAtual": {
            "type": "string"
          },
          "osId": {
            "type": "number"
          },
          "OSDhIni": {
            "type": "string",
            "format": "date-time"
          },
          "OSDhFim": {
            "type": "string",
            "format": "date-time"
          },
          "etapaId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<EstacaoTrabalho, 'id'>, 'etapaId'>"
      },
      "EstacaoTrabalhoPartial": {
        "title": "EstacaoTrabalhoPartial",
        "type": "object",
        "description": "(tsType: Partial<EstacaoTrabalho>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "fabricante": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "numserie": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "solicitaOSAntes": {
            "type": "boolean"
          },
          "i4ColetorDebug": {
            "type": "boolean"
          },
          "loginDh": {
            "type": "string",
            "format": "date-time"
          },
          "OSAtual": {
            "type": "string"
          },
          "osId": {
            "type": "number"
          },
          "OSDhIni": {
            "type": "string",
            "format": "date-time"
          },
          "OSDhFim": {
            "type": "string",
            "format": "date-time"
          },
          "etapaId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<EstacaoTrabalho>"
      },
      "NewEstacaoTrabalho": {
        "title": "NewEstacaoTrabalho",
        "type": "object",
        "description": "(tsType: Omit<EstacaoTrabalho, 'id'>, schemaOptions: { title: 'NewEstacaoTrabalho', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "fabricante": {
            "type": "string"
          },
          "modelo": {
            "type": "string"
          },
          "numserie": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "solicitaOSAntes": {
            "type": "boolean"
          },
          "i4ColetorDebug": {
            "type": "boolean"
          },
          "loginDh": {
            "type": "string",
            "format": "date-time"
          },
          "OSAtual": {
            "type": "string"
          },
          "osId": {
            "type": "number"
          },
          "OSDhIni": {
            "type": "string",
            "format": "date-time"
          },
          "OSDhFim": {
            "type": "string",
            "format": "date-time"
          },
          "etapaId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "operadorId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<EstacaoTrabalho, 'id'>"
      },
      "NewEstabelecimento": {
        "title": "NewEstabelecimento",
        "type": "object",
        "description": "(tsType: Omit<Estabelecimento, 'id'>, schemaOptions: { title: 'NewEstabelecimento', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "cargaHorariaDia": {
            "type": "number"
          },
          "i4Planta": {
            "type": "boolean"
          },
          "adicionarMinImportacaoDT": {
            "type": "number"
          },
          "etapasPorProcesso": {
            "type": "boolean"
          },
          "processoPadrao": {
            "type": "string"
          },
          "timezone": {
            "type": "string"
          },
          "utcDiff": {
            "type": "string"
          },
          "minVulcParaCicloAutoclaveValido": {
            "type": "number"
          },
          "usarCreatedOnParaOSDTChegadaImportacao": {
            "type": "boolean"
          },
          "permiteImportarTenantNumero": {
            "type": "number"
          },
          "permiteImportarTenantEstabelecimentoId": {
            "type": "number"
          },
          "estabelecimentoTipoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Estabelecimento, 'id'>"
      },
      "EstabelecimentoPartial": {
        "title": "EstabelecimentoPartial",
        "type": "object",
        "description": "(tsType: Partial<Estabelecimento>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "cargaHorariaDia": {
            "type": "number"
          },
          "i4Planta": {
            "type": "boolean"
          },
          "adicionarMinImportacaoDT": {
            "type": "number"
          },
          "etapasPorProcesso": {
            "type": "boolean"
          },
          "processoPadrao": {
            "type": "string"
          },
          "timezone": {
            "type": "string"
          },
          "utcDiff": {
            "type": "string"
          },
          "minVulcParaCicloAutoclaveValido": {
            "type": "number"
          },
          "usarCreatedOnParaOSDTChegadaImportacao": {
            "type": "boolean"
          },
          "permiteImportarTenantNumero": {
            "type": "number"
          },
          "permiteImportarTenantEstabelecimentoId": {
            "type": "number"
          },
          "estabelecimentoTipoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Estabelecimento>"
      },
      "ErpOrdemServico": {
        "title": "ErpOrdemServico",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "EstabelecimentoId": {
            "type": "string",
            "description": "Codigo do Estabelecimento/Planta"
          },
          "OrdemServico": {
            "type": "string",
            "description": "Numero da Ordem de Servico/Producao"
          },
          "OrdemServicoSequencia": {
            "type": "string",
            "description": "Sequencia da Ordem de Servico"
          },
          "CodigoBarras": {
            "type": "string",
            "description": "Codigo de barras das ordem"
          },
          "DTCriacao": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora de criacao da OS"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora de inicio de producao"
          },
          "DTFinalizado": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora finaliacao da OS"
          },
          "DTFaturado": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora faturamento vindo do erp"
          },
          "ClienteId": {
            "type": "string",
            "description": "Codigo do cliente"
          },
          "Cliente": {
            "type": "string",
            "description": "Nome/Descricao do cliente"
          },
          "ClienteCNPJ": {
            "type": "string",
            "description": "CPF/CNPJ do cliente"
          },
          "Situacao": {
            "type": "string",
            "description": "Situacao da OS"
          },
          "PneuFabricanteId": {
            "type": "string",
            "description": "Codigo do fabricante do pneu/carcaca"
          },
          "PneuFabricante": {
            "type": "string",
            "description": "Fabricante do pneu/carcaca"
          },
          "PneuModeloId": {
            "type": "string",
            "description": "Codigo do modelo do pneu/carcaca"
          },
          "PneuModelo": {
            "type": "string",
            "description": "Modelo do pneu/carcaca"
          },
          "PneuMedidaId": {
            "type": "string",
            "description": "Codigo da medida do pneu/carcaca"
          },
          "PneuMedida": {
            "type": "string",
            "description": "Medida do pneu/carcaca"
          },
          "BandaId": {
            "type": "string",
            "description": "Codigo da banda utilizada"
          },
          "Banda": {
            "type": "string",
            "description": "Banda utilizada"
          },
          "BandaLargura": {
            "type": "number",
            "description": "Largura da banda utilizada"
          },
          "dot": {
            "type": "string",
            "description": "DOT"
          },
          "marcaFogo": {
            "type": "string",
            "description": "Marca Fogo"
          },
          "vida": {
            "type": "number",
            "description": "Vida"
          },
          "ProcessoId": {
            "type": "string",
            "description": "Codigo do processo de servico utilizado para pneu/carcaca"
          },
          "ServicoId": {
            "type": "string",
            "description": "Codigo do servico utilizado para pneu/carcaca"
          },
          "Servico": {
            "type": "string",
            "description": "Descricao do servico utilizado para pneu/carcaca"
          },
          "Metodo": {
            "type": "string",
            "description": "Metodo: I- Insert; U - Update"
          },
          "Localizacao": {
            "type": "string",
            "description": "Ultima localizacao realizada na multisys"
          },
          "DTPrevColeta": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora de Prev Coleta marcada no multisys"
          },
          "DHProducao": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora de Producao marcada no multisys"
          },
          "DTFaturamento": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora faturamento  marcada no multisys"
          },
          "DHLocalizacao": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora localizacoa  marcada no multisys"
          },
          "Produzido": {
            "type": "number"
          },
          "Faturado": {
            "type": "number"
          },
          "Recusado": {
            "type": "number"
          }
        },
        "required": [
          "EstabelecimentoId",
          "OrdemServico"
        ],
        "additionalProperties": false
      },
      "NewErpOrdemServico": {
        "title": "NewErpOrdemServico",
        "type": "object",
        "description": "(tsType: Omit<ErpOrdemServico, 'id'>, schemaOptions: { title: 'NewErpOrdemServico', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "EstabelecimentoId": {
            "type": "string",
            "description": "Codigo do Estabelecimento/Planta"
          },
          "OrdemServico": {
            "type": "string",
            "description": "Numero da Ordem de Servico/Producao"
          },
          "OrdemServicoSequencia": {
            "type": "string",
            "description": "Sequencia da Ordem de Servico"
          },
          "CodigoBarras": {
            "type": "string",
            "description": "Codigo de barras das ordem"
          },
          "DTCriacao": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora de criacao da OS"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora de inicio de producao"
          },
          "DTFinalizado": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora finaliacao da OS"
          },
          "DTFaturado": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora faturamento vindo do erp"
          },
          "ClienteId": {
            "type": "string",
            "description": "Codigo do cliente"
          },
          "Cliente": {
            "type": "string",
            "description": "Nome/Descricao do cliente"
          },
          "ClienteCNPJ": {
            "type": "string",
            "description": "CPF/CNPJ do cliente"
          },
          "Situacao": {
            "type": "string",
            "description": "Situacao da OS"
          },
          "PneuFabricanteId": {
            "type": "string",
            "description": "Codigo do fabricante do pneu/carcaca"
          },
          "PneuFabricante": {
            "type": "string",
            "description": "Fabricante do pneu/carcaca"
          },
          "PneuModeloId": {
            "type": "string",
            "description": "Codigo do modelo do pneu/carcaca"
          },
          "PneuModelo": {
            "type": "string",
            "description": "Modelo do pneu/carcaca"
          },
          "PneuMedidaId": {
            "type": "string",
            "description": "Codigo da medida do pneu/carcaca"
          },
          "PneuMedida": {
            "type": "string",
            "description": "Medida do pneu/carcaca"
          },
          "BandaId": {
            "type": "string",
            "description": "Codigo da banda utilizada"
          },
          "Banda": {
            "type": "string",
            "description": "Banda utilizada"
          },
          "BandaLargura": {
            "type": "number",
            "description": "Largura da banda utilizada"
          },
          "dot": {
            "type": "string",
            "description": "DOT"
          },
          "marcaFogo": {
            "type": "string",
            "description": "Marca Fogo"
          },
          "vida": {
            "type": "number",
            "description": "Vida"
          },
          "ProcessoId": {
            "type": "string",
            "description": "Codigo do processo de servico utilizado para pneu/carcaca"
          },
          "ServicoId": {
            "type": "string",
            "description": "Codigo do servico utilizado para pneu/carcaca"
          },
          "Servico": {
            "type": "string",
            "description": "Descricao do servico utilizado para pneu/carcaca"
          },
          "Metodo": {
            "type": "string",
            "description": "Metodo: I- Insert; U - Update"
          },
          "Localizacao": {
            "type": "string",
            "description": "Ultima localizacao realizada na multisys"
          },
          "DTPrevColeta": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora de Prev Coleta marcada no multisys"
          },
          "DHProducao": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora de Producao marcada no multisys"
          },
          "DTFaturamento": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora faturamento  marcada no multisys"
          },
          "DHLocalizacao": {
            "type": "string",
            "format": "date-time",
            "description": "Data Hora localizacoa  marcada no multisys"
          },
          "Produzido": {
            "type": "number"
          },
          "Faturado": {
            "type": "number"
          },
          "Recusado": {
            "type": "number"
          }
        },
        "required": [
          "EstabelecimentoId",
          "OrdemServico"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<ErpOrdemServico, 'id'>"
      },
      "ErpOrdemServicoRetorno": {
        "title": "ErpOrdemServicoRetorno",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "etapa": {
            "type": "string"
          },
          "item": {
            "type": "string"
          },
          "codRetorno": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewErpOrdemServicoRetorno": {
        "title": "NewErpOrdemServicoRetorno",
        "type": "object",
        "description": "(tsType: Omit<ErpOrdemServicoRetorno, 'id'>, schemaOptions: { title: 'NewErpOrdemServicoRetorno', exclude: [ 'id' ] })",
        "properties": {
          "ordemServico": {
            "type": "string"
          },
          "etapa": {
            "type": "string"
          },
          "item": {
            "type": "string"
          },
          "codRetorno": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<ErpOrdemServicoRetorno, 'id'>"
      },
      "ErpOrdemServicoRetornoWithRelations": {
        "title": "ErpOrdemServicoRetornoWithRelations",
        "type": "object",
        "description": "(tsType: ErpOrdemServicoRetornoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "etapa": {
            "type": "string"
          },
          "item": {
            "type": "string"
          },
          "codRetorno": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "ErpOrdemServicoRetornoWithRelations"
      },
      "ErpOrdemServicoRetornoPartial": {
        "title": "ErpOrdemServicoRetornoPartial",
        "type": "object",
        "description": "(tsType: Partial<ErpOrdemServicoRetorno>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "ordemServico": {
            "type": "string"
          },
          "etapa": {
            "type": "string"
          },
          "item": {
            "type": "string"
          },
          "codRetorno": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<ErpOrdemServicoRetorno>"
      },
      "ErpOrdemServicoEtapa": {
        "title": "ErpOrdemServicoEtapa",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "EstabelecimentoId": {
            "type": "string"
          },
          "OrdemServico": {
            "type": "string"
          },
          "DTCriacao": {
            "type": "string",
            "format": "date-time"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTFinalizado": {
            "type": "string",
            "format": "date-time"
          },
          "EtapaId": {
            "type": "string"
          },
          "Etapa": {
            "type": "string"
          },
          "Estacao": {
            "type": "string",
            "description": "Estacao/base/equipamento utilizaado na etapa"
          },
          "EstacaoId": {
            "type": "string"
          },
          "UserErp": {
            "type": "string"
          },
          "Situacao": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewErpOrdemServicoEtapa": {
        "title": "NewErpOrdemServicoEtapa",
        "type": "object",
        "description": "(tsType: Omit<ErpOrdemServicoEtapa, 'id'>, schemaOptions: { title: 'NewErpOrdemServicoEtapa', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "EstabelecimentoId": {
            "type": "string"
          },
          "OrdemServico": {
            "type": "string"
          },
          "DTCriacao": {
            "type": "string",
            "format": "date-time"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTFinalizado": {
            "type": "string",
            "format": "date-time"
          },
          "EtapaId": {
            "type": "string"
          },
          "Etapa": {
            "type": "string"
          },
          "Estacao": {
            "type": "string",
            "description": "Estacao/base/equipamento utilizaado na etapa"
          },
          "EstacaoId": {
            "type": "string"
          },
          "UserErp": {
            "type": "string"
          },
          "Situacao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<ErpOrdemServicoEtapa, 'id'>"
      },
      "ErpOrdemServicoEtapaResposta": {
        "title": "ErpOrdemServicoEtapaResposta",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "EstabelecimentoId": {
            "type": "string"
          },
          "OrdemServico": {
            "type": "string"
          },
          "EtapaId": {
            "type": "string"
          },
          "Etapa": {
            "type": "string"
          },
          "EstacaoId": {
            "type": "string"
          },
          "QuestaoId": {
            "type": "string"
          },
          "Questao": {
            "type": "string"
          },
          "RespostaId": {
            "type": "string"
          },
          "Resposta": {
            "type": "string"
          },
          "DTResposta": {
            "type": "string",
            "format": "date-time"
          },
          "UserErp": {
            "type": "string"
          },
          "Metodo": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewErpOrdemServicoEtapaResposta": {
        "title": "NewErpOrdemServicoEtapaResposta",
        "type": "object",
        "description": "(tsType: Omit<ErpOrdemServicoEtapaResposta, 'id'>, schemaOptions: { title: 'NewErpOrdemServicoEtapaResposta', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "EstabelecimentoId": {
            "type": "string"
          },
          "OrdemServico": {
            "type": "string"
          },
          "EtapaId": {
            "type": "string"
          },
          "Etapa": {
            "type": "string"
          },
          "EstacaoId": {
            "type": "string"
          },
          "QuestaoId": {
            "type": "string"
          },
          "Questao": {
            "type": "string"
          },
          "RespostaId": {
            "type": "string"
          },
          "Resposta": {
            "type": "string"
          },
          "DTResposta": {
            "type": "string",
            "format": "date-time"
          },
          "UserErp": {
            "type": "string"
          },
          "Metodo": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<ErpOrdemServicoEtapaResposta, 'id'>"
      },
      "DiarioProducao": {
        "title": "DiarioProducao",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "turno": {
            "type": "number"
          },
          "dhInicio": {
            "type": "string",
            "format": "date-time"
          },
          "dtFim": {
            "type": "string",
            "format": "date-time"
          },
          "responsavel": {
            "type": "string"
          },
          "producao": {
            "type": "number"
          },
          "obsProducao": {
            "type": "string"
          },
          "disponibilidadePneus": {
            "type": "number"
          },
          "obsDisponibilidadePneus": {
            "type": "string"
          },
          "materiaPrima": {
            "type": "number"
          },
          "obsMateriaPrima": {
            "type": "string"
          },
          "pessoal": {
            "type": "number"
          },
          "obsPessoal": {
            "type": "string"
          },
          "equipamentos": {
            "type": "number"
          },
          "obsEquipamentos": {
            "type": "string"
          },
          "observacoesGerais": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewDiarioProducao": {
        "title": "NewDiarioProducao",
        "type": "object",
        "description": "(tsType: Omit<DiarioProducao, 'id'>, schemaOptions: { title: 'NewDiarioProducao', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "turno": {
            "type": "number"
          },
          "dhInicio": {
            "type": "string",
            "format": "date-time"
          },
          "dtFim": {
            "type": "string",
            "format": "date-time"
          },
          "responsavel": {
            "type": "string"
          },
          "producao": {
            "type": "number"
          },
          "obsProducao": {
            "type": "string"
          },
          "disponibilidadePneus": {
            "type": "number"
          },
          "obsDisponibilidadePneus": {
            "type": "string"
          },
          "materiaPrima": {
            "type": "number"
          },
          "obsMateriaPrima": {
            "type": "string"
          },
          "pessoal": {
            "type": "number"
          },
          "obsPessoal": {
            "type": "string"
          },
          "equipamentos": {
            "type": "number"
          },
          "obsEquipamentos": {
            "type": "string"
          },
          "observacoesGerais": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<DiarioProducao, 'id'>"
      },
      "DiarioProducaoWithRelations": {
        "title": "DiarioProducaoWithRelations",
        "type": "object",
        "description": "(tsType: DiarioProducaoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "turno": {
            "type": "number"
          },
          "dhInicio": {
            "type": "string",
            "format": "date-time"
          },
          "dtFim": {
            "type": "string",
            "format": "date-time"
          },
          "responsavel": {
            "type": "string"
          },
          "producao": {
            "type": "number"
          },
          "obsProducao": {
            "type": "string"
          },
          "disponibilidadePneus": {
            "type": "number"
          },
          "obsDisponibilidadePneus": {
            "type": "string"
          },
          "materiaPrima": {
            "type": "number"
          },
          "obsMateriaPrima": {
            "type": "string"
          },
          "pessoal": {
            "type": "number"
          },
          "obsPessoal": {
            "type": "string"
          },
          "equipamentos": {
            "type": "number"
          },
          "obsEquipamentos": {
            "type": "string"
          },
          "observacoesGerais": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "estabelecimento": {
            "$ref": "#/components/schemas/EstabelecimentoWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "DiarioProducaoWithRelations"
      },
      "DiarioProducaoPartial": {
        "title": "DiarioProducaoPartial",
        "type": "object",
        "description": "(tsType: Partial<DiarioProducao>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "data": {
            "type": "string",
            "format": "date-time"
          },
          "turno": {
            "type": "number"
          },
          "dhInicio": {
            "type": "string",
            "format": "date-time"
          },
          "dtFim": {
            "type": "string",
            "format": "date-time"
          },
          "responsavel": {
            "type": "string"
          },
          "producao": {
            "type": "number"
          },
          "obsProducao": {
            "type": "string"
          },
          "disponibilidadePneus": {
            "type": "number"
          },
          "obsDisponibilidadePneus": {
            "type": "string"
          },
          "materiaPrima": {
            "type": "number"
          },
          "obsMateriaPrima": {
            "type": "string"
          },
          "pessoal": {
            "type": "number"
          },
          "obsPessoal": {
            "type": "string"
          },
          "equipamentos": {
            "type": "number"
          },
          "obsEquipamentos": {
            "type": "string"
          },
          "observacoesGerais": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<DiarioProducao>"
      },
      "Contato": {
        "title": "Contato",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "nome": {
            "type": "string"
          },
          "fone": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewContato": {
        "title": "NewContato",
        "type": "object",
        "description": "(tsType: Omit<Contato, 'id'>, schemaOptions: { title: 'NewContato', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "nome": {
            "type": "string"
          },
          "fone": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Contato, 'id'>"
      },
      "ContatoWithRelations": {
        "title": "ContatoWithRelations",
        "type": "object",
        "description": "(tsType: ContatoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "nome": {
            "type": "string"
          },
          "fone": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "ContatoWithRelations"
      },
      "ContatoPartial": {
        "title": "ContatoPartial",
        "type": "object",
        "description": "(tsType: Partial<Contato>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "nome": {
            "type": "string"
          },
          "fone": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Contato>"
      },
      "NewOrdemServicoInCliente": {
        "title": "NewOrdemServicoInCliente",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<OrdemServico, 'id'>, 'clienteId'>, schemaOptions: { title: 'NewOrdemServicoInCliente', exclude: [ 'id' ], optional: [ 'clienteId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "ordemServicoId": {
            "type": "string"
          },
          "ordemServicoSequencia": {
            "type": "string"
          },
          "descricao": {
            "type": "string"
          },
          "DTChegada": {
            "type": "string",
            "format": "date-time"
          },
          "DTInicioProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTFimProducao": {
            "type": "string",
            "format": "date-time"
          },
          "DTSaida": {
            "type": "string",
            "format": "date-time"
          },
          "dot": {
            "type": "string"
          },
          "marcaFogo": {
            "type": "string"
          },
          "vida": {
            "type": "number"
          },
          "etapaAtual": {
            "type": "number"
          },
          "DTUltimaEtapa": {
            "type": "string",
            "format": "date-time"
          },
          "erpOSId": {
            "type": "number"
          },
          "teveRetrabalho": {
            "type": "boolean"
          },
          "larguraBandaAplicada": {
            "type": "number"
          },
          "validacaoBanda": {
            "type": "number"
          },
          "legadoPneuFabricante": {
            "type": "string"
          },
          "legadoPneuModelo": {
            "type": "string"
          },
          "legadoPneuMedida": {
            "type": "string"
          },
          "legadoBandaId": {
            "type": "string"
          },
          "legadoBanda": {
            "type": "string"
          },
          "legadoBandaLargura": {
            "type": "number"
          },
          "legadoOrdemServicoSequencia": {
            "type": "string"
          },
          "legadoDHProducao": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDHFaturamento": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDTPrevColeta": {
            "type": "string",
            "format": "date-time"
          },
          "legadoDHLocalizacao": {
            "type": "string",
            "format": "date-time"
          },
          "legadoProduzido": {
            "type": "boolean"
          },
          "legadoFaturado": {
            "type": "boolean"
          },
          "legadoRecusado": {
            "type": "boolean"
          },
          "legadoLocalizacao": {
            "type": "string"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "pneuModeloId": {
            "type": "number"
          },
          "bandaId": {
            "type": "number"
          },
          "processoId": {
            "type": "number"
          },
          "pneuMedidaId": {
            "type": "number"
          },
          "statusOrdemServicoId": {
            "type": "number"
          },
          "clienteId": {
            "type": "number"
          },
          "servicoId": {
            "type": "number"
          },
          "prioridadeId": {
            "type": "number"
          },
          "itemIdBandaAplicada": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<OrdemServico, 'id'>, 'clienteId'>"
      },
      "NewBanda": {
        "title": "NewBanda",
        "type": "object",
        "description": "(tsType: Omit<Banda, 'id'>, schemaOptions: { title: 'NewBanda', exclude: [ 'id' ] })",
        "properties": {
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "bandaFabricanteId": {
            "type": "number"
          },
          "glbBandaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Banda, 'id'>"
      },
      "BandaPartial": {
        "title": "BandaPartial",
        "type": "object",
        "description": "(tsType: Partial<Banda>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "legadoId": {
            "type": "string"
          },
          "idGlobal": {
            "type": "number"
          },
          "ehAtivo": {
            "type": "boolean"
          },
          "bandaFabricanteId": {
            "type": "number"
          },
          "glbBandaId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Banda>"
      },
      "Autoclave": {
        "title": "Autoclave",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "codigo": {
            "type": "number"
          },
          "nome": {
            "type": "string"
          },
          "protocoloComunicacao": {
            "type": "string"
          },
          "enderecoIp": {
            "type": "string"
          },
          "portaIp": {
            "type": "number"
          },
          "nodo": {
            "type": "number"
          },
          "capacidade": {
            "type": "number"
          },
          "licencaNumCiclosLiberados": {
            "type": "number"
          },
          "fabricante": {
            "type": "string"
          },
          "ativo": {
            "type": "boolean"
          },
          "dtUltCom": {
            "type": "string",
            "format": "date-time"
          },
          "autoclaveSgvId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "efetivoCronometroAtual": {
            "type": "number"
          },
          "efetivoTemperaturaAtual": {
            "type": "number"
          },
          "efetivoPressaoAtual": {
            "type": "number"
          },
          "efetivoCicloAtual": {
            "type": "number"
          },
          "processoIniciado": {
            "type": "boolean"
          },
          "fimDeCiclo": {
            "type": "boolean"
          },
          "alarmeSemComunicacao": {
            "type": "boolean"
          },
          "alarmeEmergencia": {
            "type": "boolean"
          },
          "dtUltLocalWrite": {
            "type": "string",
            "format": "date-time"
          },
          "versaoCLP": {
            "type": "number"
          },
          "licencasNoPainel": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewAutoclave": {
        "title": "NewAutoclave",
        "type": "object",
        "description": "(tsType: Omit<Autoclave, 'id'>, schemaOptions: { title: 'NewAutoclave', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "codigo": {
            "type": "number"
          },
          "nome": {
            "type": "string"
          },
          "protocoloComunicacao": {
            "type": "string"
          },
          "enderecoIp": {
            "type": "string"
          },
          "portaIp": {
            "type": "number"
          },
          "nodo": {
            "type": "number"
          },
          "capacidade": {
            "type": "number"
          },
          "licencaNumCiclosLiberados": {
            "type": "number"
          },
          "fabricante": {
            "type": "string"
          },
          "ativo": {
            "type": "boolean"
          },
          "dtUltCom": {
            "type": "string",
            "format": "date-time"
          },
          "autoclaveSgvId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "efetivoCronometroAtual": {
            "type": "number"
          },
          "efetivoTemperaturaAtual": {
            "type": "number"
          },
          "efetivoPressaoAtual": {
            "type": "number"
          },
          "efetivoCicloAtual": {
            "type": "number"
          },
          "processoIniciado": {
            "type": "boolean"
          },
          "fimDeCiclo": {
            "type": "boolean"
          },
          "alarmeSemComunicacao": {
            "type": "boolean"
          },
          "alarmeEmergencia": {
            "type": "boolean"
          },
          "dtUltLocalWrite": {
            "type": "string",
            "format": "date-time"
          },
          "versaoCLP": {
            "type": "number"
          },
          "licencasNoPainel": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<Autoclave, 'id'>"
      },
      "AutoclaveHistoricoWithRelations": {
        "title": "AutoclaveHistoricoWithRelations",
        "type": "object",
        "description": "(tsType: AutoclaveHistoricoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "DTUtc": {
            "type": "string",
            "format": "date-time"
          },
          "receitaNumero": {
            "type": "number"
          },
          "ciclo": {
            "type": "number"
          },
          "efetivoCronometro": {
            "type": "number"
          },
          "efetivoTemperatura": {
            "type": "number"
          },
          "efetivoPressao": {
            "type": "number"
          },
          "efetivoPressaoEnvelope": {
            "type": "number"
          },
          "efetivoPressaoInicioEnvelope": {
            "type": "number"
          },
          "efetivoPressaoSacoDeAr": {
            "type": "number"
          },
          "efetivoTempoSupervisaoPressao": {
            "type": "number"
          },
          "efetivoTempoSupervisaoAquecimento": {
            "type": "number"
          },
          "efetivoTempoVulcanizacao": {
            "type": "number"
          },
          "efetivoVulcanizacao": {
            "type": "number"
          },
          "minutoInicial": {
            "type": "number"
          },
          "minutoFinal": {
            "type": "number"
          },
          "horaInicial": {
            "type": "number"
          },
          "horaFinal": {
            "type": "number"
          },
          "efetivoPressaoAutoclave": {
            "type": "number"
          },
          "efetivoPressaoSacoDeAr2": {
            "type": "number"
          },
          "efetivoPressaoEnvelope2": {
            "type": "number"
          },
          "testePressaoResultado": {
            "type": "number"
          },
          "portaAutoclave": {
            "type": "boolean"
          },
          "alimentacaoArAutoclave": {
            "type": "boolean"
          },
          "alimentacaoEnvelope": {
            "type": "boolean"
          },
          "alimentacaoSacoDeAr": {
            "type": "boolean"
          },
          "alimentacaoVapor": {
            "type": "boolean"
          },
          "descargaDeAr": {
            "type": "boolean"
          },
          "descargaEnvelope": {
            "type": "boolean"
          },
          "descargaSacoDeAr": {
            "type": "boolean"
          },
          "ventilador": {
            "type": "boolean"
          },
          "sempre": {
            "type": "boolean"
          },
          "processoIniciado": {
            "type": "boolean"
          },
          "fimDeCiclo": {
            "type": "boolean"
          },
          "alarmeSemComunicacao": {
            "type": "boolean"
          },
          "alarmeEmergencia": {
            "type": "boolean"
          },
          "alarmeVentilador": {
            "type": "boolean"
          },
          "alarmePT100": {
            "type": "boolean"
          },
          "alarmeSupervisaoPressaoAutoclave": {
            "type": "boolean"
          },
          "alarmeSupervisaoPressaoSacoDeAr": {
            "type": "boolean"
          },
          "alarmeSupervisaoAquecimento": {
            "type": "boolean"
          },
          "alarmeTemperaturaBaixa": {
            "type": "boolean"
          },
          "alarmeTemperaturaAlta": {
            "type": "boolean"
          },
          "alarmePressaoAlta": {
            "type": "boolean"
          },
          "alarmePressaoAltaSacoDeAr": {
            "type": "boolean"
          },
          "alarmePressaoAltaEnvelope": {
            "type": "boolean"
          },
          "alarmePressaoBaixa": {
            "type": "boolean"
          },
          "alarmePressaoBaixaSacoDeAr": {
            "type": "boolean"
          },
          "alarmePressaoBaixaEnvelope": {
            "type": "boolean"
          },
          "alarmeFalhaSensorAutoclave": {
            "type": "boolean"
          },
          "alarmeFalhaSensorSacoDeAr": {
            "type": "boolean"
          },
          "alarmeFalhaSensorEnvelope": {
            "type": "boolean"
          },
          "alarmeFalhaAcionamentoVentilador": {
            "type": "boolean"
          },
          "alarmeTripAquecimento": {
            "type": "boolean"
          },
          "alarmeBateriaCLP": {
            "type": "boolean"
          },
          "alarmeDescargaSacoDeAr": {
            "type": "boolean"
          },
          "alarmeDescargaEnvelope": {
            "type": "boolean"
          },
          "alarmePortaAutoclaveAberta": {
            "type": "boolean"
          },
          "alarmePressostato": {
            "type": "boolean"
          },
          "alarmeTermostato": {
            "type": "boolean"
          },
          "alarmeFalhaRetornoContactoraAquecimento": {
            "type": "boolean"
          },
          "alarmeFaltaEnergia": {
            "type": "boolean"
          },
          "alarmeSupervisaoPressaoEnvelope": {
            "type": "boolean"
          },
          "presetTemperaturaAutoclave": {
            "type": "number"
          },
          "presetPressaoAutoclave": {
            "type": "number"
          },
          "presetPressaoEnvelope": {
            "type": "number"
          },
          "presetPressaoInicialEnvelope": {
            "type": "number"
          },
          "presetAntecipacaoDescargaSacoDeAr": {
            "type": "number"
          },
          "presetPressaoSacoDeAr": {
            "type": "number"
          },
          "presetTempoVulcanizacao": {
            "type": "number"
          },
          "presetTempoSupervisaoPressoes": {
            "type": "number"
          },
          "presetTempoSupervisaoAquecimento": {
            "type": "number"
          },
          "alarmePressaoOscilou": {
            "type": "boolean"
          },
          "alarmeRiscoIncendio": {
            "type": "boolean"
          },
          "tags": {
            "type": "string",
            "nullable": true
          },
          "autoclaveId": {
            "type": "number"
          },
          "autoclave": {
            "$ref": "#/components/schemas/AutoclaveWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "AutoclaveHistoricoWithRelations"
      },
      "AutoclaveCicloCheckWithRelations": {
        "title": "AutoclaveCicloCheckWithRelations",
        "type": "object",
        "description": "(tsType: AutoclaveCicloCheckWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "ciclo": {
            "type": "number"
          },
          "subciclo": {
            "type": "number"
          },
          "cicloSubciclo": {
            "type": "number"
          },
          "dtIni": {
            "type": "string",
            "format": "date-time"
          },
          "dtUltW": {
            "type": "string",
            "format": "date-time"
          },
          "dtFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "contadorCapturas": {
            "type": "number"
          },
          "piPrimeiroEstado": {
            "type": "boolean"
          },
          "processoIniciado": {
            "type": "boolean"
          },
          "maiorTempoVulc": {
            "type": "number"
          },
          "dtZeroEm": {
            "type": "string",
            "format": "date-time"
          },
          "emergencia": {
            "type": "boolean"
          },
          "finalizado": {
            "type": "boolean"
          },
          "observacoes": {
            "type": "string"
          },
          "autoclaveId": {
            "type": "number"
          },
          "autoclave": {
            "$ref": "#/components/schemas/AutoclaveWithRelations"
          },
          "foreignKey": {}
        },
        "additionalProperties": false,
        "x-typescript-type": "AutoclaveCicloCheckWithRelations"
      },
      "AutoclaveWithRelations": {
        "title": "AutoclaveWithRelations",
        "type": "object",
        "description": "(tsType: AutoclaveWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "codigo": {
            "type": "number"
          },
          "nome": {
            "type": "string"
          },
          "protocoloComunicacao": {
            "type": "string"
          },
          "enderecoIp": {
            "type": "string"
          },
          "portaIp": {
            "type": "number"
          },
          "nodo": {
            "type": "number"
          },
          "capacidade": {
            "type": "number"
          },
          "licencaNumCiclosLiberados": {
            "type": "number"
          },
          "fabricante": {
            "type": "string"
          },
          "ativo": {
            "type": "boolean"
          },
          "dtUltCom": {
            "type": "string",
            "format": "date-time"
          },
          "autoclaveSgvId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "efetivoCronometroAtual": {
            "type": "number"
          },
          "efetivoTemperaturaAtual": {
            "type": "number"
          },
          "efetivoPressaoAtual": {
            "type": "number"
          },
          "efetivoCicloAtual": {
            "type": "number"
          },
          "processoIniciado": {
            "type": "boolean"
          },
          "fimDeCiclo": {
            "type": "boolean"
          },
          "alarmeSemComunicacao": {
            "type": "boolean"
          },
          "alarmeEmergencia": {
            "type": "boolean"
          },
          "dtUltLocalWrite": {
            "type": "string",
            "format": "date-time"
          },
          "versaoCLP": {
            "type": "number"
          },
          "licencasNoPainel": {
            "type": "number"
          },
          "autoclaveHistoricos": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AutoclaveHistoricoWithRelations"
            }
          },
          "estabelecimento": {
            "$ref": "#/components/schemas/EstabelecimentoWithRelations"
          },
          "foreignKey": {},
          "autoclaveCicloChecks": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AutoclaveCicloCheckWithRelations"
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "AutoclaveWithRelations"
      },
      "AutoclavePartial": {
        "title": "AutoclavePartial",
        "type": "object",
        "description": "(tsType: Partial<Autoclave>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "codigo": {
            "type": "number"
          },
          "nome": {
            "type": "string"
          },
          "protocoloComunicacao": {
            "type": "string"
          },
          "enderecoIp": {
            "type": "string"
          },
          "portaIp": {
            "type": "number"
          },
          "nodo": {
            "type": "number"
          },
          "capacidade": {
            "type": "number"
          },
          "licencaNumCiclosLiberados": {
            "type": "number"
          },
          "fabricante": {
            "type": "string"
          },
          "ativo": {
            "type": "boolean"
          },
          "dtUltCom": {
            "type": "string",
            "format": "date-time"
          },
          "autoclaveSgvId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "efetivoCronometroAtual": {
            "type": "number"
          },
          "efetivoTemperaturaAtual": {
            "type": "number"
          },
          "efetivoPressaoAtual": {
            "type": "number"
          },
          "efetivoCicloAtual": {
            "type": "number"
          },
          "processoIniciado": {
            "type": "boolean"
          },
          "fimDeCiclo": {
            "type": "boolean"
          },
          "alarmeSemComunicacao": {
            "type": "boolean"
          },
          "alarmeEmergencia": {
            "type": "boolean"
          },
          "dtUltLocalWrite": {
            "type": "string",
            "format": "date-time"
          },
          "versaoCLP": {
            "type": "number"
          },
          "licencasNoPainel": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<Autoclave>"
      },
      "AutoclaveSgv": {
        "title": "AutoclaveSgv",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "identificacao": {
            "type": "string"
          },
          "portaSerial": {
            "type": "string"
          },
          "intervalo": {
            "type": "number"
          },
          "escreverACadaSecs": {
            "type": "number"
          },
          "escreverSeAlarme": {
            "type": "boolean"
          },
          "escreverSeProcessoNaoIniciado": {
            "type": "boolean"
          },
          "escreverAposProcessoNaoIniciado": {
            "type": "number"
          },
          "enviar2Cloud": {
            "type": "boolean"
          },
          "enviar2Mqtt": {
            "type": "boolean"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "debugComunicacaoAutoclaves": {
            "type": "boolean"
          },
          "i4Username": {
            "type": "string"
          },
          "i4Password": {
            "type": "string"
          },
          "dtUltCom": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "NewAutoclaveSgv": {
        "title": "NewAutoclaveSgv",
        "type": "object",
        "description": "(tsType: Omit<AutoclaveSgv, 'id'>, schemaOptions: { title: 'NewAutoclaveSgv', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "identificacao": {
            "type": "string"
          },
          "portaSerial": {
            "type": "string"
          },
          "intervalo": {
            "type": "number"
          },
          "escreverACadaSecs": {
            "type": "number"
          },
          "escreverSeAlarme": {
            "type": "boolean"
          },
          "escreverSeProcessoNaoIniciado": {
            "type": "boolean"
          },
          "escreverAposProcessoNaoIniciado": {
            "type": "number"
          },
          "enviar2Cloud": {
            "type": "boolean"
          },
          "enviar2Mqtt": {
            "type": "boolean"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "debugComunicacaoAutoclaves": {
            "type": "boolean"
          },
          "i4Username": {
            "type": "string"
          },
          "i4Password": {
            "type": "string"
          },
          "dtUltCom": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<AutoclaveSgv, 'id'>"
      },
      "AutoclaveSgvWithRelations": {
        "title": "AutoclaveSgvWithRelations",
        "type": "object",
        "description": "(tsType: AutoclaveSgvWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "identificacao": {
            "type": "string"
          },
          "portaSerial": {
            "type": "string"
          },
          "intervalo": {
            "type": "number"
          },
          "escreverACadaSecs": {
            "type": "number"
          },
          "escreverSeAlarme": {
            "type": "boolean"
          },
          "escreverSeProcessoNaoIniciado": {
            "type": "boolean"
          },
          "escreverAposProcessoNaoIniciado": {
            "type": "number"
          },
          "enviar2Cloud": {
            "type": "boolean"
          },
          "enviar2Mqtt": {
            "type": "boolean"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "debugComunicacaoAutoclaves": {
            "type": "boolean"
          },
          "i4Username": {
            "type": "string"
          },
          "i4Password": {
            "type": "string"
          },
          "dtUltCom": {
            "type": "string",
            "format": "date-time"
          },
          "autoclaves": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/AutoclaveWithRelations"
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "AutoclaveSgvWithRelations"
      },
      "AutoclaveSgvPartial": {
        "title": "AutoclaveSgvPartial",
        "type": "object",
        "description": "(tsType: Partial<AutoclaveSgv>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "identificacao": {
            "type": "string"
          },
          "portaSerial": {
            "type": "string"
          },
          "intervalo": {
            "type": "number"
          },
          "escreverACadaSecs": {
            "type": "number"
          },
          "escreverSeAlarme": {
            "type": "boolean"
          },
          "escreverSeProcessoNaoIniciado": {
            "type": "boolean"
          },
          "escreverAposProcessoNaoIniciado": {
            "type": "number"
          },
          "enviar2Cloud": {
            "type": "boolean"
          },
          "enviar2Mqtt": {
            "type": "boolean"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "debugComunicacaoAutoclaves": {
            "type": "boolean"
          },
          "i4Username": {
            "type": "string"
          },
          "i4Password": {
            "type": "string"
          },
          "dtUltCom": {
            "type": "string",
            "format": "date-time"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AutoclaveSgv>"
      },
      "NewAutoclaveInAutoclaveSgv": {
        "title": "NewAutoclaveInAutoclaveSgv",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<Autoclave, 'id'>, 'autoclaveSgvId'>, schemaOptions: { title: 'NewAutoclaveInAutoclaveSgv', exclude: [ 'id' ], optional: [ 'autoclaveSgvId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "codigo": {
            "type": "number"
          },
          "nome": {
            "type": "string"
          },
          "protocoloComunicacao": {
            "type": "string"
          },
          "enderecoIp": {
            "type": "string"
          },
          "portaIp": {
            "type": "number"
          },
          "nodo": {
            "type": "number"
          },
          "capacidade": {
            "type": "number"
          },
          "licencaNumCiclosLiberados": {
            "type": "number"
          },
          "fabricante": {
            "type": "string"
          },
          "ativo": {
            "type": "boolean"
          },
          "dtUltCom": {
            "type": "string",
            "format": "date-time"
          },
          "autoclaveSgvId": {
            "type": "number"
          },
          "estabelecimentoId": {
            "type": "number"
          },
          "efetivoCronometroAtual": {
            "type": "number"
          },
          "efetivoTemperaturaAtual": {
            "type": "number"
          },
          "efetivoPressaoAtual": {
            "type": "number"
          },
          "efetivoCicloAtual": {
            "type": "number"
          },
          "processoIniciado": {
            "type": "boolean"
          },
          "fimDeCiclo": {
            "type": "boolean"
          },
          "alarmeSemComunicacao": {
            "type": "boolean"
          },
          "alarmeEmergencia": {
            "type": "boolean"
          },
          "dtUltLocalWrite": {
            "type": "string",
            "format": "date-time"
          },
          "versaoCLP": {
            "type": "number"
          },
          "licencasNoPainel": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<Autoclave, 'id'>, 'autoclaveSgvId'>"
      },
      "AutoclaveHistorico": {
        "title": "AutoclaveHistorico",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "DTUtc": {
            "type": "string",
            "format": "date-time"
          },
          "receitaNumero": {
            "type": "number"
          },
          "ciclo": {
            "type": "number"
          },
          "efetivoCronometro": {
            "type": "number"
          },
          "efetivoTemperatura": {
            "type": "number"
          },
          "efetivoPressao": {
            "type": "number"
          },
          "efetivoPressaoEnvelope": {
            "type": "number"
          },
          "efetivoPressaoInicioEnvelope": {
            "type": "number"
          },
          "efetivoPressaoSacoDeAr": {
            "type": "number"
          },
          "efetivoTempoSupervisaoPressao": {
            "type": "number"
          },
          "efetivoTempoSupervisaoAquecimento": {
            "type": "number"
          },
          "efetivoTempoVulcanizacao": {
            "type": "number"
          },
          "efetivoVulcanizacao": {
            "type": "number"
          },
          "minutoInicial": {
            "type": "number"
          },
          "minutoFinal": {
            "type": "number"
          },
          "horaInicial": {
            "type": "number"
          },
          "horaFinal": {
            "type": "number"
          },
          "efetivoPressaoAutoclave": {
            "type": "number"
          },
          "efetivoPressaoSacoDeAr2": {
            "type": "number"
          },
          "efetivoPressaoEnvelope2": {
            "type": "number"
          },
          "testePressaoResultado": {
            "type": "number"
          },
          "portaAutoclave": {
            "type": "boolean"
          },
          "alimentacaoArAutoclave": {
            "type": "boolean"
          },
          "alimentacaoEnvelope": {
            "type": "boolean"
          },
          "alimentacaoSacoDeAr": {
            "type": "boolean"
          },
          "alimentacaoVapor": {
            "type": "boolean"
          },
          "descargaDeAr": {
            "type": "boolean"
          },
          "descargaEnvelope": {
            "type": "boolean"
          },
          "descargaSacoDeAr": {
            "type": "boolean"
          },
          "ventilador": {
            "type": "boolean"
          },
          "sempre": {
            "type": "boolean"
          },
          "processoIniciado": {
            "type": "boolean"
          },
          "fimDeCiclo": {
            "type": "boolean"
          },
          "alarmeSemComunicacao": {
            "type": "boolean"
          },
          "alarmeEmergencia": {
            "type": "boolean"
          },
          "alarmeVentilador": {
            "type": "boolean"
          },
          "alarmePT100": {
            "type": "boolean"
          },
          "alarmeSupervisaoPressaoAutoclave": {
            "type": "boolean"
          },
          "alarmeSupervisaoPressaoSacoDeAr": {
            "type": "boolean"
          },
          "alarmeSupervisaoAquecimento": {
            "type": "boolean"
          },
          "alarmeTemperaturaBaixa": {
            "type": "boolean"
          },
          "alarmeTemperaturaAlta": {
            "type": "boolean"
          },
          "alarmePressaoAlta": {
            "type": "boolean"
          },
          "alarmePressaoAltaSacoDeAr": {
            "type": "boolean"
          },
          "alarmePressaoAltaEnvelope": {
            "type": "boolean"
          },
          "alarmePressaoBaixa": {
            "type": "boolean"
          },
          "alarmePressaoBaixaSacoDeAr": {
            "type": "boolean"
          },
          "alarmePressaoBaixaEnvelope": {
            "type": "boolean"
          },
          "alarmeFalhaSensorAutoclave": {
            "type": "boolean"
          },
          "alarmeFalhaSensorSacoDeAr": {
            "type": "boolean"
          },
          "alarmeFalhaSensorEnvelope": {
            "type": "boolean"
          },
          "alarmeFalhaAcionamentoVentilador": {
            "type": "boolean"
          },
          "alarmeTripAquecimento": {
            "type": "boolean"
          },
          "alarmeBateriaCLP": {
            "type": "boolean"
          },
          "alarmeDescargaSacoDeAr": {
            "type": "boolean"
          },
          "alarmeDescargaEnvelope": {
            "type": "boolean"
          },
          "alarmePortaAutoclaveAberta": {
            "type": "boolean"
          },
          "alarmePressostato": {
            "type": "boolean"
          },
          "alarmeTermostato": {
            "type": "boolean"
          },
          "alarmeFalhaRetornoContactoraAquecimento": {
            "type": "boolean"
          },
          "alarmeFaltaEnergia": {
            "type": "boolean"
          },
          "alarmeSupervisaoPressaoEnvelope": {
            "type": "boolean"
          },
          "presetTemperaturaAutoclave": {
            "type": "number"
          },
          "presetPressaoAutoclave": {
            "type": "number"
          },
          "presetPressaoEnvelope": {
            "type": "number"
          },
          "presetPressaoInicialEnvelope": {
            "type": "number"
          },
          "presetAntecipacaoDescargaSacoDeAr": {
            "type": "number"
          },
          "presetPressaoSacoDeAr": {
            "type": "number"
          },
          "presetTempoVulcanizacao": {
            "type": "number"
          },
          "presetTempoSupervisaoPressoes": {
            "type": "number"
          },
          "presetTempoSupervisaoAquecimento": {
            "type": "number"
          },
          "alarmePressaoOscilou": {
            "type": "boolean"
          },
          "alarmeRiscoIncendio": {
            "type": "boolean"
          },
          "tags": {
            "type": "string",
            "nullable": true
          },
          "autoclaveId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewAutoclaveHistoricoInAutoclave": {
        "title": "NewAutoclaveHistoricoInAutoclave",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<AutoclaveHistorico, 'id'>, 'autoclaveId'>, schemaOptions: { title: 'NewAutoclaveHistoricoInAutoclave', exclude: [ 'id' ], optional: [ 'autoclaveId' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "localId": {
            "type": "number"
          },
          "DTUtc": {
            "type": "string",
            "format": "date-time"
          },
          "receitaNumero": {
            "type": "number"
          },
          "ciclo": {
            "type": "number"
          },
          "efetivoCronometro": {
            "type": "number"
          },
          "efetivoTemperatura": {
            "type": "number"
          },
          "efetivoPressao": {
            "type": "number"
          },
          "efetivoPressaoEnvelope": {
            "type": "number"
          },
          "efetivoPressaoInicioEnvelope": {
            "type": "number"
          },
          "efetivoPressaoSacoDeAr": {
            "type": "number"
          },
          "efetivoTempoSupervisaoPressao": {
            "type": "number"
          },
          "efetivoTempoSupervisaoAquecimento": {
            "type": "number"
          },
          "efetivoTempoVulcanizacao": {
            "type": "number"
          },
          "efetivoVulcanizacao": {
            "type": "number"
          },
          "minutoInicial": {
            "type": "number"
          },
          "minutoFinal": {
            "type": "number"
          },
          "horaInicial": {
            "type": "number"
          },
          "horaFinal": {
            "type": "number"
          },
          "efetivoPressaoAutoclave": {
            "type": "number"
          },
          "efetivoPressaoSacoDeAr2": {
            "type": "number"
          },
          "efetivoPressaoEnvelope2": {
            "type": "number"
          },
          "testePressaoResultado": {
            "type": "number"
          },
          "portaAutoclave": {
            "type": "boolean"
          },
          "alimentacaoArAutoclave": {
            "type": "boolean"
          },
          "alimentacaoEnvelope": {
            "type": "boolean"
          },
          "alimentacaoSacoDeAr": {
            "type": "boolean"
          },
          "alimentacaoVapor": {
            "type": "boolean"
          },
          "descargaDeAr": {
            "type": "boolean"
          },
          "descargaEnvelope": {
            "type": "boolean"
          },
          "descargaSacoDeAr": {
            "type": "boolean"
          },
          "ventilador": {
            "type": "boolean"
          },
          "sempre": {
            "type": "boolean"
          },
          "processoIniciado": {
            "type": "boolean"
          },
          "fimDeCiclo": {
            "type": "boolean"
          },
          "alarmeSemComunicacao": {
            "type": "boolean"
          },
          "alarmeEmergencia": {
            "type": "boolean"
          },
          "alarmeVentilador": {
            "type": "boolean"
          },
          "alarmePT100": {
            "type": "boolean"
          },
          "alarmeSupervisaoPressaoAutoclave": {
            "type": "boolean"
          },
          "alarmeSupervisaoPressaoSacoDeAr": {
            "type": "boolean"
          },
          "alarmeSupervisaoAquecimento": {
            "type": "boolean"
          },
          "alarmeTemperaturaBaixa": {
            "type": "boolean"
          },
          "alarmeTemperaturaAlta": {
            "type": "boolean"
          },
          "alarmePressaoAlta": {
            "type": "boolean"
          },
          "alarmePressaoAltaSacoDeAr": {
            "type": "boolean"
          },
          "alarmePressaoAltaEnvelope": {
            "type": "boolean"
          },
          "alarmePressaoBaixa": {
            "type": "boolean"
          },
          "alarmePressaoBaixaSacoDeAr": {
            "type": "boolean"
          },
          "alarmePressaoBaixaEnvelope": {
            "type": "boolean"
          },
          "alarmeFalhaSensorAutoclave": {
            "type": "boolean"
          },
          "alarmeFalhaSensorSacoDeAr": {
            "type": "boolean"
          },
          "alarmeFalhaSensorEnvelope": {
            "type": "boolean"
          },
          "alarmeFalhaAcionamentoVentilador": {
            "type": "boolean"
          },
          "alarmeTripAquecimento": {
            "type": "boolean"
          },
          "alarmeBateriaCLP": {
            "type": "boolean"
          },
          "alarmeDescargaSacoDeAr": {
            "type": "boolean"
          },
          "alarmeDescargaEnvelope": {
            "type": "boolean"
          },
          "alarmePortaAutoclaveAberta": {
            "type": "boolean"
          },
          "alarmePressostato": {
            "type": "boolean"
          },
          "alarmeTermostato": {
            "type": "boolean"
          },
          "alarmeFalhaRetornoContactoraAquecimento": {
            "type": "boolean"
          },
          "alarmeFaltaEnergia": {
            "type": "boolean"
          },
          "alarmeSupervisaoPressaoEnvelope": {
            "type": "boolean"
          },
          "presetTemperaturaAutoclave": {
            "type": "number"
          },
          "presetPressaoAutoclave": {
            "type": "number"
          },
          "presetPressaoEnvelope": {
            "type": "number"
          },
          "presetPressaoInicialEnvelope": {
            "type": "number"
          },
          "presetAntecipacaoDescargaSacoDeAr": {
            "type": "number"
          },
          "presetPressaoSacoDeAr": {
            "type": "number"
          },
          "presetTempoVulcanizacao": {
            "type": "number"
          },
          "presetTempoSupervisaoPressoes": {
            "type": "number"
          },
          "presetTempoSupervisaoAquecimento": {
            "type": "number"
          },
          "alarmePressaoOscilou": {
            "type": "boolean"
          },
          "alarmeRiscoIncendio": {
            "type": "boolean"
          },
          "tags": {
            "type": "string",
            "nullable": true
          },
          "autoclaveId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<AutoclaveHistorico, 'id'>, 'autoclaveId'>"
      },
      "AutoclaveHistoricoPartial": {
        "title": "AutoclaveHistoricoPartial",
        "type": "object",
        "description": "(tsType: Partial<AutoclaveHistorico>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "localId": {
            "type": "number"
          },
          "DTUtc": {
            "type": "string",
            "format": "date-time"
          },
          "receitaNumero": {
            "type": "number"
          },
          "ciclo": {
            "type": "number"
          },
          "efetivoCronometro": {
            "type": "number"
          },
          "efetivoTemperatura": {
            "type": "number"
          },
          "efetivoPressao": {
            "type": "number"
          },
          "efetivoPressaoEnvelope": {
            "type": "number"
          },
          "efetivoPressaoInicioEnvelope": {
            "type": "number"
          },
          "efetivoPressaoSacoDeAr": {
            "type": "number"
          },
          "efetivoTempoSupervisaoPressao": {
            "type": "number"
          },
          "efetivoTempoSupervisaoAquecimento": {
            "type": "number"
          },
          "efetivoTempoVulcanizacao": {
            "type": "number"
          },
          "efetivoVulcanizacao": {
            "type": "number"
          },
          "minutoInicial": {
            "type": "number"
          },
          "minutoFinal": {
            "type": "number"
          },
          "horaInicial": {
            "type": "number"
          },
          "horaFinal": {
            "type": "number"
          },
          "efetivoPressaoAutoclave": {
            "type": "number"
          },
          "efetivoPressaoSacoDeAr2": {
            "type": "number"
          },
          "efetivoPressaoEnvelope2": {
            "type": "number"
          },
          "testePressaoResultado": {
            "type": "number"
          },
          "portaAutoclave": {
            "type": "boolean"
          },
          "alimentacaoArAutoclave": {
            "type": "boolean"
          },
          "alimentacaoEnvelope": {
            "type": "boolean"
          },
          "alimentacaoSacoDeAr": {
            "type": "boolean"
          },
          "alimentacaoVapor": {
            "type": "boolean"
          },
          "descargaDeAr": {
            "type": "boolean"
          },
          "descargaEnvelope": {
            "type": "boolean"
          },
          "descargaSacoDeAr": {
            "type": "boolean"
          },
          "ventilador": {
            "type": "boolean"
          },
          "sempre": {
            "type": "boolean"
          },
          "processoIniciado": {
            "type": "boolean"
          },
          "fimDeCiclo": {
            "type": "boolean"
          },
          "alarmeSemComunicacao": {
            "type": "boolean"
          },
          "alarmeEmergencia": {
            "type": "boolean"
          },
          "alarmeVentilador": {
            "type": "boolean"
          },
          "alarmePT100": {
            "type": "boolean"
          },
          "alarmeSupervisaoPressaoAutoclave": {
            "type": "boolean"
          },
          "alarmeSupervisaoPressaoSacoDeAr": {
            "type": "boolean"
          },
          "alarmeSupervisaoAquecimento": {
            "type": "boolean"
          },
          "alarmeTemperaturaBaixa": {
            "type": "boolean"
          },
          "alarmeTemperaturaAlta": {
            "type": "boolean"
          },
          "alarmePressaoAlta": {
            "type": "boolean"
          },
          "alarmePressaoAltaSacoDeAr": {
            "type": "boolean"
          },
          "alarmePressaoAltaEnvelope": {
            "type": "boolean"
          },
          "alarmePressaoBaixa": {
            "type": "boolean"
          },
          "alarmePressaoBaixaSacoDeAr": {
            "type": "boolean"
          },
          "alarmePressaoBaixaEnvelope": {
            "type": "boolean"
          },
          "alarmeFalhaSensorAutoclave": {
            "type": "boolean"
          },
          "alarmeFalhaSensorSacoDeAr": {
            "type": "boolean"
          },
          "alarmeFalhaSensorEnvelope": {
            "type": "boolean"
          },
          "alarmeFalhaAcionamentoVentilador": {
            "type": "boolean"
          },
          "alarmeTripAquecimento": {
            "type": "boolean"
          },
          "alarmeBateriaCLP": {
            "type": "boolean"
          },
          "alarmeDescargaSacoDeAr": {
            "type": "boolean"
          },
          "alarmeDescargaEnvelope": {
            "type": "boolean"
          },
          "alarmePortaAutoclaveAberta": {
            "type": "boolean"
          },
          "alarmePressostato": {
            "type": "boolean"
          },
          "alarmeTermostato": {
            "type": "boolean"
          },
          "alarmeFalhaRetornoContactoraAquecimento": {
            "type": "boolean"
          },
          "alarmeFaltaEnergia": {
            "type": "boolean"
          },
          "alarmeSupervisaoPressaoEnvelope": {
            "type": "boolean"
          },
          "presetTemperaturaAutoclave": {
            "type": "number"
          },
          "presetPressaoAutoclave": {
            "type": "number"
          },
          "presetPressaoEnvelope": {
            "type": "number"
          },
          "presetPressaoInicialEnvelope": {
            "type": "number"
          },
          "presetAntecipacaoDescargaSacoDeAr": {
            "type": "number"
          },
          "presetPressaoSacoDeAr": {
            "type": "number"
          },
          "presetTempoVulcanizacao": {
            "type": "number"
          },
          "presetTempoSupervisaoPressoes": {
            "type": "number"
          },
          "presetTempoSupervisaoAquecimento": {
            "type": "number"
          },
          "alarmePressaoOscilou": {
            "type": "boolean"
          },
          "alarmeRiscoIncendio": {
            "type": "boolean"
          },
          "tags": {
            "type": "string",
            "nullable": true
          },
          "autoclaveId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AutoclaveHistorico>"
      },
      "AutoclaveCicloCheck": {
        "title": "AutoclaveCicloCheck",
        "type": "object",
        "properties": {
          "id": {
            "type": "number"
          },
          "ciclo": {
            "type": "number"
          },
          "subciclo": {
            "type": "number"
          },
          "cicloSubciclo": {
            "type": "number"
          },
          "dtIni": {
            "type": "string",
            "format": "date-time"
          },
          "dtUltW": {
            "type": "string",
            "format": "date-time"
          },
          "dtFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "contadorCapturas": {
            "type": "number"
          },
          "piPrimeiroEstado": {
            "type": "boolean"
          },
          "processoIniciado": {
            "type": "boolean"
          },
          "maiorTempoVulc": {
            "type": "number"
          },
          "dtZeroEm": {
            "type": "string",
            "format": "date-time"
          },
          "emergencia": {
            "type": "boolean"
          },
          "finalizado": {
            "type": "boolean"
          },
          "observacoes": {
            "type": "string"
          },
          "autoclaveId": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewAutoclaveCicloCheckInAutoclave": {
        "title": "NewAutoclaveCicloCheckInAutoclave",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<AutoclaveCicloCheck, 'id'>, 'autoclaveId'>, schemaOptions: { title: 'NewAutoclaveCicloCheckInAutoclave', exclude: [ 'id' ], optional: [ 'autoclaveId' ] })",
        "properties": {
          "ciclo": {
            "type": "number"
          },
          "subciclo": {
            "type": "number"
          },
          "cicloSubciclo": {
            "type": "number"
          },
          "dtIni": {
            "type": "string",
            "format": "date-time"
          },
          "dtUltW": {
            "type": "string",
            "format": "date-time"
          },
          "dtFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "contadorCapturas": {
            "type": "number"
          },
          "piPrimeiroEstado": {
            "type": "boolean"
          },
          "processoIniciado": {
            "type": "boolean"
          },
          "maiorTempoVulc": {
            "type": "number"
          },
          "dtZeroEm": {
            "type": "string",
            "format": "date-time"
          },
          "emergencia": {
            "type": "boolean"
          },
          "finalizado": {
            "type": "boolean"
          },
          "observacoes": {
            "type": "string"
          },
          "autoclaveId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<AutoclaveCicloCheck, 'id'>, 'autoclaveId'>"
      },
      "AutoclaveCicloCheckPartial": {
        "title": "AutoclaveCicloCheckPartial",
        "type": "object",
        "description": "(tsType: Partial<AutoclaveCicloCheck>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "type": "number"
          },
          "ciclo": {
            "type": "number"
          },
          "subciclo": {
            "type": "number"
          },
          "cicloSubciclo": {
            "type": "number"
          },
          "dtIni": {
            "type": "string",
            "format": "date-time"
          },
          "dtUltW": {
            "type": "string",
            "format": "date-time"
          },
          "dtFimCiclo": {
            "type": "string",
            "format": "date-time"
          },
          "contadorCapturas": {
            "type": "number"
          },
          "piPrimeiroEstado": {
            "type": "boolean"
          },
          "processoIniciado": {
            "type": "boolean"
          },
          "maiorTempoVulc": {
            "type": "number"
          },
          "dtZeroEm": {
            "type": "string",
            "format": "date-time"
          },
          "emergencia": {
            "type": "boolean"
          },
          "finalizado": {
            "type": "boolean"
          },
          "observacoes": {
            "type": "string"
          },
          "autoclaveId": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AutoclaveCicloCheck>"
      },
      "App": {
        "title": "App",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "versao": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewApp": {
        "title": "NewApp",
        "type": "object",
        "description": "(tsType: Omit<App, 'id'>, schemaOptions: { title: 'NewApp', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "descricao": {
            "type": "string"
          },
          "versao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<App, 'id'>"
      },
      "AppWithRelations": {
        "title": "AppWithRelations",
        "type": "object",
        "description": "(tsType: AppWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "versao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "AppWithRelations"
      },
      "AppPartial": {
        "title": "AppPartial",
        "type": "object",
        "description": "(tsType: Partial<App>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "descricao": {
            "type": "string"
          },
          "versao": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<App>"
      },
      "AppRelease": {
        "title": "AppRelease",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "versao": {
            "type": "string"
          },
          "publicNotes": {
            "type": "string"
          },
          "supportNotes": {
            "type": "string"
          },
          "devNotes": {
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "NewAppRelease": {
        "title": "NewAppRelease",
        "type": "object",
        "description": "(tsType: Omit<AppRelease, 'id'>, schemaOptions: { title: 'NewAppRelease', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "versao": {
            "type": "string"
          },
          "publicNotes": {
            "type": "string"
          },
          "supportNotes": {
            "type": "string"
          },
          "devNotes": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<AppRelease, 'id'>"
      },
      "AppReleaseWithRelations": {
        "title": "AppReleaseWithRelations",
        "type": "object",
        "description": "(tsType: AppReleaseWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "versao": {
            "type": "string"
          },
          "publicNotes": {
            "type": "string"
          },
          "supportNotes": {
            "type": "string"
          },
          "devNotes": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "AppReleaseWithRelations"
      },
      "AppReleasePartial": {
        "title": "AppReleasePartial",
        "type": "object",
        "description": "(tsType: Partial<AppRelease>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "versao": {
            "type": "string"
          },
          "publicNotes": {
            "type": "string"
          },
          "supportNotes": {
            "type": "string"
          },
          "devNotes": {
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AppRelease>"
      },
      "AppInstaladoVersao": {
        "title": "AppInstaladoVersao",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "DTUtc": {
            "type": "string",
            "format": "date-time"
          },
          "app": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "ipAddress": {
            "type": "string"
          },
          "configRede": {
            "type": "string"
          },
          "idInstalacao": {
            "type": "string"
          },
          "versao": {
            "type": "string"
          },
          "configuracoes": {
            "type": "string"
          },
          "outros": {
            "type": "string"
          },
          "systemUptime": {
            "type": "number"
          },
          "appUptime": {
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "NewAppInstaladoVersao": {
        "title": "NewAppInstaladoVersao",
        "type": "object",
        "description": "(tsType: Omit<AppInstaladoVersao, 'id'>, schemaOptions: { title: 'NewAppInstaladoVersao', exclude: [ 'id' ] })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "DTUtc": {
            "type": "string",
            "format": "date-time"
          },
          "app": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "ipAddress": {
            "type": "string"
          },
          "configRede": {
            "type": "string"
          },
          "idInstalacao": {
            "type": "string"
          },
          "versao": {
            "type": "string"
          },
          "configuracoes": {
            "type": "string"
          },
          "outros": {
            "type": "string"
          },
          "systemUptime": {
            "type": "number"
          },
          "appUptime": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<AppInstaladoVersao, 'id'>"
      },
      "AppInstaladoVersaoWithRelations": {
        "title": "AppInstaladoVersaoWithRelations",
        "type": "object",
        "description": "(tsType: AppInstaladoVersaoWithRelations, schemaOptions: { includeRelations: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "DTUtc": {
            "type": "string",
            "format": "date-time"
          },
          "app": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "ipAddress": {
            "type": "string"
          },
          "configRede": {
            "type": "string"
          },
          "idInstalacao": {
            "type": "string"
          },
          "versao": {
            "type": "string"
          },
          "configuracoes": {
            "type": "string"
          },
          "outros": {
            "type": "string"
          },
          "systemUptime": {
            "type": "number"
          },
          "appUptime": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "AppInstaladoVersaoWithRelations"
      },
      "AppInstaladoVersaoPartial": {
        "title": "AppInstaladoVersaoPartial",
        "type": "object",
        "description": "(tsType: Partial<AppInstaladoVersao>, schemaOptions: { partial: true })",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "DTUtc": {
            "type": "string",
            "format": "date-time"
          },
          "app": {
            "type": "string"
          },
          "username": {
            "type": "string"
          },
          "ipAddress": {
            "type": "string"
          },
          "configRede": {
            "type": "string"
          },
          "idInstalacao": {
            "type": "string"
          },
          "versao": {
            "type": "string"
          },
          "configuracoes": {
            "type": "string"
          },
          "outros": {
            "type": "string"
          },
          "systemUptime": {
            "type": "number"
          },
          "appUptime": {
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<AppInstaladoVersao>"
      },
      "Tenant": {
        "title": "Tenant",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "createdBy": {
            "type": "number"
          },
          "modifiedBy": {
            "type": "number"
          },
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "type": {
            "type": "string"
          },
          "ativo": {
            "type": "boolean"
          },
          "connectionLimit": {
            "type": "number"
          },
          "address1": {
            "type": "string"
          },
          "address2": {
            "type": "string"
          },
          "address3": {
            "type": "string"
          },
          "address4": {
            "type": "string"
          },
          "city": {
            "type": "string"
          },
          "state": {
            "type": "string"
          },
          "zip": {
            "type": "string"
          },
          "country": {
            "type": "string"
          },
          "status": {
            "type": "string"
          }
        },
        "required": [
          "name",
          "type",
          "status"
        ],
        "additionalProperties": false
      },
      "Role": {
        "title": "Role",
        "type": "object",
        "properties": {
          "deleted": {
            "type": "boolean"
          },
          "createdOn": {
            "type": "string",
            "format": "date-time"
          },
          "modifiedOn": {
            "type": "string",
            "format": "date-time"
          },
          "id": {
            "type": "number"
          },
          "name": {
            "type": "string"
          },
          "permissions": {
            "type": "string"
          },
          "frontEndPermissions": {
            "type": "string"
          }
        },
        "required": [
          "id",
          "name",
          "permissions",
          "frontEndPermissions"
        ],
        "additionalProperties": false
      },
      "LoginRequest": {
        "title": "LoginRequest",
        "type": "object",
        "properties": {
          "username": {
            "type": "string"
          },
          "password": {
            "type": "string"
          }
        },
        "required": [
          "username",
          "password"
        ],
        "additionalProperties": false
      },
      "loopback.Count": {
        "type": "object",
        "title": "loopback.Count",
        "x-typescript-type": "@loopback/repository#Count",
        "properties": {
          "count": {
            "type": "number"
          }
        }
      },
      "AppRelease.Filter": {
        "type": "object",
        "title": "AppRelease.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "versao": {
                    "type": "boolean"
                  },
                  "publicNotes": {
                    "type": "boolean"
                  },
                  "supportNotes": {
                    "type": "boolean"
                  },
                  "devNotes": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "versao",
                    "publicNotes",
                    "supportNotes",
                    "devNotes"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "AppRelease.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AppRelease>"
      },
      "AppRelease.Filter1": {
        "type": "object",
        "title": "AppRelease.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "AppRelease.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "versao": {
                    "type": "boolean"
                  },
                  "publicNotes": {
                    "type": "boolean"
                  },
                  "supportNotes": {
                    "type": "boolean"
                  },
                  "devNotes": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "versao",
                    "publicNotes",
                    "supportNotes",
                    "devNotes"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "AppRelease.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AppRelease>"
      },
      "App.Filter": {
        "type": "object",
        "title": "App.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "versao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "versao"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "App.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<App>"
      },
      "App.Filter1": {
        "type": "object",
        "title": "App.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "App.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "versao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "versao"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "App.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<App>"
      },
      "ResetPasswordResponse": {
        "type": "object",
        "title": "ResetPasswordResponse",
        "properties": {
          "success": {
            "type": "boolean"
          }
        }
      },
      "ResetPassword": {
        "type": "object",
        "title": "ResetPassword",
        "required": [
          "token",
          "newPassword"
        ],
        "properties": {
          "token": {
            "type": "string"
          },
          "newPassword": {
            "type": "string"
          }
        }
      },
      "ValidateResetTokenResponse": {
        "type": "object",
        "title": "ValidateResetTokenResponse",
        "properties": {
          "valid": {
            "type": "boolean"
          },
          "userId": {
            "type": "number"
          }
        }
      },
      "ValidateResetToken": {
        "type": "object",
        "title": "ValidateResetToken",
        "required": [
          "token"
        ],
        "properties": {
          "token": {
            "type": "string"
          }
        }
      },
      "AutoclaveSgv.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "AutoclaveSgv.ScopeFilter"
      },
      "AutoclaveSgv.IncludeFilter.Items": {
        "title": "AutoclaveSgv.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "autoclaves"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/AutoclaveSgv.ScopeFilter"
          }
        }
      },
      "AutoclaveSgv.Filter": {
        "type": "object",
        "title": "AutoclaveSgv.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "identificacao": {
                    "type": "boolean"
                  },
                  "portaSerial": {
                    "type": "boolean"
                  },
                  "intervalo": {
                    "type": "boolean"
                  },
                  "escreverACadaSecs": {
                    "type": "boolean"
                  },
                  "escreverSeAlarme": {
                    "type": "boolean"
                  },
                  "escreverSeProcessoNaoIniciado": {
                    "type": "boolean"
                  },
                  "escreverAposProcessoNaoIniciado": {
                    "type": "boolean"
                  },
                  "enviar2Cloud": {
                    "type": "boolean"
                  },
                  "enviar2Mqtt": {
                    "type": "boolean"
                  },
                  "estabelecimentoId": {
                    "type": "boolean"
                  },
                  "debugComunicacaoAutoclaves": {
                    "type": "boolean"
                  },
                  "i4Username": {
                    "type": "boolean"
                  },
                  "i4Password": {
                    "type": "boolean"
                  },
                  "dtUltCom": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "identificacao",
                    "portaSerial",
                    "intervalo",
                    "escreverACadaSecs",
                    "escreverSeAlarme",
                    "escreverSeProcessoNaoIniciado",
                    "escreverAposProcessoNaoIniciado",
                    "enviar2Cloud",
                    "enviar2Mqtt",
                    "estabelecimentoId",
                    "debugComunicacaoAutoclaves",
                    "i4Username",
                    "i4Password",
                    "dtUltCom"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "AutoclaveSgv.Fields"
          },
          "include": {
            "title": "AutoclaveSgv.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/AutoclaveSgv.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AutoclaveSgv>"
      },
      "AutoclaveSgv.Filter1": {
        "type": "object",
        "title": "AutoclaveSgv.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "AutoclaveSgv.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "identificacao": {
                    "type": "boolean"
                  },
                  "portaSerial": {
                    "type": "boolean"
                  },
                  "intervalo": {
                    "type": "boolean"
                  },
                  "escreverACadaSecs": {
                    "type": "boolean"
                  },
                  "escreverSeAlarme": {
                    "type": "boolean"
                  },
                  "escreverSeProcessoNaoIniciado": {
                    "type": "boolean"
                  },
                  "escreverAposProcessoNaoIniciado": {
                    "type": "boolean"
                  },
                  "enviar2Cloud": {
                    "type": "boolean"
                  },
                  "enviar2Mqtt": {
                    "type": "boolean"
                  },
                  "estabelecimentoId": {
                    "type": "boolean"
                  },
                  "debugComunicacaoAutoclaves": {
                    "type": "boolean"
                  },
                  "i4Username": {
                    "type": "boolean"
                  },
                  "i4Password": {
                    "type": "boolean"
                  },
                  "dtUltCom": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "identificacao",
                    "portaSerial",
                    "intervalo",
                    "escreverACadaSecs",
                    "escreverSeAlarme",
                    "escreverSeProcessoNaoIniciado",
                    "escreverAposProcessoNaoIniciado",
                    "enviar2Cloud",
                    "enviar2Mqtt",
                    "estabelecimentoId",
                    "debugComunicacaoAutoclaves",
                    "i4Username",
                    "i4Password",
                    "dtUltCom"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "AutoclaveSgv.Fields"
          },
          "include": {
            "title": "AutoclaveSgv.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/AutoclaveSgv.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<AutoclaveSgv>"
      },
      "Contato.Filter": {
        "type": "object",
        "title": "Contato.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "nome": {
                    "type": "boolean"
                  },
                  "fone": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "nome",
                    "fone"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "Contato.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Contato>"
      },
      "Contato.Filter1": {
        "type": "object",
        "title": "Contato.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Contato.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "nome": {
                    "type": "boolean"
                  },
                  "fone": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "nome",
                    "fone"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "Contato.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Contato>"
      },
      "DiarioProducao.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "DiarioProducao.ScopeFilter"
      },
      "DiarioProducao.IncludeFilter.Items": {
        "title": "DiarioProducao.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "estabelecimento"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/DiarioProducao.ScopeFilter"
          }
        }
      },
      "DiarioProducao.Filter": {
        "type": "object",
        "title": "DiarioProducao.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "data": {
                    "type": "boolean"
                  },
                  "turno": {
                    "type": "boolean"
                  },
                  "dhInicio": {
                    "type": "boolean"
                  },
                  "dtFim": {
                    "type": "boolean"
                  },
                  "responsavel": {
                    "type": "boolean"
                  },
                  "producao": {
                    "type": "boolean"
                  },
                  "obsProducao": {
                    "type": "boolean"
                  },
                  "disponibilidadePneus": {
                    "type": "boolean"
                  },
                  "obsDisponibilidadePneus": {
                    "type": "boolean"
                  },
                  "materiaPrima": {
                    "type": "boolean"
                  },
                  "obsMateriaPrima": {
                    "type": "boolean"
                  },
                  "pessoal": {
                    "type": "boolean"
                  },
                  "obsPessoal": {
                    "type": "boolean"
                  },
                  "equipamentos": {
                    "type": "boolean"
                  },
                  "obsEquipamentos": {
                    "type": "boolean"
                  },
                  "observacoesGerais": {
                    "type": "boolean"
                  },
                  "estabelecimentoId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "data",
                    "turno",
                    "dhInicio",
                    "dtFim",
                    "responsavel",
                    "producao",
                    "obsProducao",
                    "disponibilidadePneus",
                    "obsDisponibilidadePneus",
                    "materiaPrima",
                    "obsMateriaPrima",
                    "pessoal",
                    "obsPessoal",
                    "equipamentos",
                    "obsEquipamentos",
                    "observacoesGerais",
                    "estabelecimentoId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "DiarioProducao.Fields"
          },
          "include": {
            "title": "DiarioProducao.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/DiarioProducao.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<DiarioProducao>"
      },
      "DiarioProducao.Filter1": {
        "type": "object",
        "title": "DiarioProducao.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "DiarioProducao.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "data": {
                    "type": "boolean"
                  },
                  "turno": {
                    "type": "boolean"
                  },
                  "dhInicio": {
                    "type": "boolean"
                  },
                  "dtFim": {
                    "type": "boolean"
                  },
                  "responsavel": {
                    "type": "boolean"
                  },
                  "producao": {
                    "type": "boolean"
                  },
                  "obsProducao": {
                    "type": "boolean"
                  },
                  "disponibilidadePneus": {
                    "type": "boolean"
                  },
                  "obsDisponibilidadePneus": {
                    "type": "boolean"
                  },
                  "materiaPrima": {
                    "type": "boolean"
                  },
                  "obsMateriaPrima": {
                    "type": "boolean"
                  },
                  "pessoal": {
                    "type": "boolean"
                  },
                  "obsPessoal": {
                    "type": "boolean"
                  },
                  "equipamentos": {
                    "type": "boolean"
                  },
                  "obsEquipamentos": {
                    "type": "boolean"
                  },
                  "observacoesGerais": {
                    "type": "boolean"
                  },
                  "estabelecimentoId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "data",
                    "turno",
                    "dhInicio",
                    "dtFim",
                    "responsavel",
                    "producao",
                    "obsProducao",
                    "disponibilidadePneus",
                    "obsDisponibilidadePneus",
                    "materiaPrima",
                    "obsMateriaPrima",
                    "pessoal",
                    "obsPessoal",
                    "equipamentos",
                    "obsEquipamentos",
                    "observacoesGerais",
                    "estabelecimentoId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "DiarioProducao.Fields"
          },
          "include": {
            "title": "DiarioProducao.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/DiarioProducao.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<DiarioProducao>"
      },
      "ErpOrdemServicoRetorno.Filter": {
        "type": "object",
        "title": "ErpOrdemServicoRetorno.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "ordemServico": {
                    "type": "boolean"
                  },
                  "etapa": {
                    "type": "boolean"
                  },
                  "item": {
                    "type": "boolean"
                  },
                  "codRetorno": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "ordemServico",
                    "etapa",
                    "item",
                    "codRetorno",
                    "descricao"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "ErpOrdemServicoRetorno.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<ErpOrdemServicoRetorno>"
      },
      "ErpOrdemServicoRetorno.Filter1": {
        "type": "object",
        "title": "ErpOrdemServicoRetorno.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "ErpOrdemServicoRetorno.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "ordemServico": {
                    "type": "boolean"
                  },
                  "etapa": {
                    "type": "boolean"
                  },
                  "item": {
                    "type": "boolean"
                  },
                  "codRetorno": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "ordemServico",
                    "etapa",
                    "item",
                    "codRetorno",
                    "descricao"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "ErpOrdemServicoRetorno.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<ErpOrdemServicoRetorno>"
      },
      "GlbBanda.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "GlbBanda.ScopeFilter"
      },
      "GlbBanda.IncludeFilter.Items": {
        "title": "GlbBanda.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "glbFabricante"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/GlbBanda.ScopeFilter"
          }
        }
      },
      "GlbBanda.Filter": {
        "type": "object",
        "title": "GlbBanda.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "largurasDisponiveis": {
                    "type": "boolean"
                  },
                  "glbFabricanteId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "largurasDisponiveis",
                    "glbFabricanteId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbBanda.Fields"
          },
          "include": {
            "title": "GlbBanda.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/GlbBanda.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbBanda>"
      },
      "GlbBanda.Filter1": {
        "type": "object",
        "title": "GlbBanda.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "GlbBanda.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "largurasDisponiveis": {
                    "type": "boolean"
                  },
                  "glbFabricanteId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "largurasDisponiveis",
                    "glbFabricanteId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbBanda.Fields"
          },
          "include": {
            "title": "GlbBanda.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/GlbBanda.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbBanda>"
      },
      "GlbFabricante.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "GlbFabricante.ScopeFilter"
      },
      "GlbFabricante.IncludeFilter.Items": {
        "title": "GlbFabricante.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "glbPneuModelos"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/GlbFabricante.ScopeFilter"
          }
        }
      },
      "GlbFabricante.Filter": {
        "type": "object",
        "title": "GlbFabricante.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbFabricante.Fields"
          },
          "include": {
            "title": "GlbFabricante.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/GlbFabricante.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbFabricante>"
      },
      "GlbFabricante.Filter1": {
        "type": "object",
        "title": "GlbFabricante.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "GlbFabricante.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbFabricante.Fields"
          },
          "include": {
            "title": "GlbFabricante.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/GlbFabricante.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbFabricante>"
      },
      "GlbParametro.Filter": {
        "type": "object",
        "title": "GlbParametro.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "chave": {
                    "type": "boolean"
                  },
                  "app": {
                    "type": "boolean"
                  },
                  "versaoApp": {
                    "type": "boolean"
                  },
                  "tipoValor": {
                    "type": "boolean"
                  },
                  "valor0Int": {
                    "type": "boolean"
                  },
                  "valor1Dec": {
                    "type": "boolean"
                  },
                  "valor2Str": {
                    "type": "boolean"
                  },
                  "valor3Bool": {
                    "type": "boolean"
                  },
                  "valor4Dh": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "chave",
                    "app",
                    "versaoApp",
                    "tipoValor",
                    "valor0Int",
                    "valor1Dec",
                    "valor2Str",
                    "valor3Bool",
                    "valor4Dh"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbParametro.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbParametro>"
      },
      "GlbParametro.Filter1": {
        "type": "object",
        "title": "GlbParametro.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "GlbParametro.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "chave": {
                    "type": "boolean"
                  },
                  "app": {
                    "type": "boolean"
                  },
                  "versaoApp": {
                    "type": "boolean"
                  },
                  "tipoValor": {
                    "type": "boolean"
                  },
                  "valor0Int": {
                    "type": "boolean"
                  },
                  "valor1Dec": {
                    "type": "boolean"
                  },
                  "valor2Str": {
                    "type": "boolean"
                  },
                  "valor3Bool": {
                    "type": "boolean"
                  },
                  "valor4Dh": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "chave",
                    "app",
                    "versaoApp",
                    "tipoValor",
                    "valor0Int",
                    "valor1Dec",
                    "valor2Str",
                    "valor3Bool",
                    "valor4Dh"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbParametro.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbParametro>"
      },
      "GlbPneuMedida.Filter": {
        "type": "object",
        "title": "GlbPneuMedida.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "largura": {
                    "type": "boolean"
                  },
                  "raio": {
                    "type": "boolean"
                  },
                  "construcao": {
                    "type": "boolean"
                  },
                  "diametro": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "largura",
                    "raio",
                    "construcao",
                    "diametro"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbPneuMedida.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbPneuMedida>"
      },
      "GlbPneuMedida.Filter1": {
        "type": "object",
        "title": "GlbPneuMedida.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "GlbPneuMedida.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "largura": {
                    "type": "boolean"
                  },
                  "raio": {
                    "type": "boolean"
                  },
                  "construcao": {
                    "type": "boolean"
                  },
                  "diametro": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "largura",
                    "raio",
                    "construcao",
                    "diametro"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbPneuMedida.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbPneuMedida>"
      },
      "GlbPneuModelo.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "GlbPneuModelo.ScopeFilter"
      },
      "GlbPneuModelo.IncludeFilter.Items": {
        "title": "GlbPneuModelo.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "glbFabricante"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/GlbPneuModelo.ScopeFilter"
          }
        }
      },
      "GlbPneuModelo.Filter": {
        "type": "object",
        "title": "GlbPneuModelo.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "glbFabricanteId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "glbFabricanteId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbPneuModelo.Fields"
          },
          "include": {
            "title": "GlbPneuModelo.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/GlbPneuModelo.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbPneuModelo>"
      },
      "GlbPneuModelo.Filter1": {
        "type": "object",
        "title": "GlbPneuModelo.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "GlbPneuModelo.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "glbFabricanteId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "glbFabricanteId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbPneuModelo.Fields"
          },
          "include": {
            "title": "GlbPneuModelo.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/GlbPneuModelo.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbPneuModelo>"
      },
      "GlbRaspaReceitaCategoria.Filter": {
        "type": "object",
        "title": "GlbRaspaReceitaCategoria.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbRaspaReceitaCategoria.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbRaspaReceitaCategoria>"
      },
      "GlbRaspaReceitaCategoria.Filter1": {
        "type": "object",
        "title": "GlbRaspaReceitaCategoria.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "GlbRaspaReceitaCategoria.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbRaspaReceitaCategoria.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbRaspaReceitaCategoria>"
      },
      "GlbRaspaReceitaSituacao.Filter": {
        "type": "object",
        "title": "GlbRaspaReceitaSituacao.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbRaspaReceitaSituacao.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbRaspaReceitaSituacao>"
      },
      "GlbRaspaReceitaSituacao.Filter1": {
        "type": "object",
        "title": "GlbRaspaReceitaSituacao.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "GlbRaspaReceitaSituacao.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "GlbRaspaReceitaSituacao.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<GlbRaspaReceitaSituacao>"
      },
      "Item.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Item.ScopeFilter"
      },
      "Item.IncludeFilter.Items": {
        "title": "Item.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "banda",
              "tipoItem"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/Item.ScopeFilter"
          }
        }
      },
      "Item.Filter": {
        "type": "object",
        "title": "Item.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "larguraBanda": {
                    "type": "boolean"
                  },
                  "codMaterialUnique": {
                    "type": "boolean"
                  },
                  "grupoMaterialUnique": {
                    "type": "boolean"
                  },
                  "tipoControleEstoque": {
                    "type": "boolean"
                  },
                  "codigoBarras": {
                    "type": "boolean"
                  },
                  "bandaId": {
                    "type": "boolean"
                  },
                  "tipoItemId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "descricao",
                    "larguraBanda",
                    "codMaterialUnique",
                    "grupoMaterialUnique",
                    "tipoControleEstoque",
                    "codigoBarras",
                    "bandaId",
                    "tipoItemId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Item.Fields"
          },
          "include": {
            "title": "Item.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Item.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Item>"
      },
      "Item.Filter1": {
        "type": "object",
        "title": "Item.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Item.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "larguraBanda": {
                    "type": "boolean"
                  },
                  "codMaterialUnique": {
                    "type": "boolean"
                  },
                  "grupoMaterialUnique": {
                    "type": "boolean"
                  },
                  "tipoControleEstoque": {
                    "type": "boolean"
                  },
                  "codigoBarras": {
                    "type": "boolean"
                  },
                  "bandaId": {
                    "type": "boolean"
                  },
                  "tipoItemId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "descricao",
                    "larguraBanda",
                    "codMaterialUnique",
                    "grupoMaterialUnique",
                    "tipoControleEstoque",
                    "codigoBarras",
                    "bandaId",
                    "tipoItemId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Item.Fields"
          },
          "include": {
            "title": "Item.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Item.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Item>"
      },
      "LoginTech.Filter": {
        "type": "object",
        "title": "LoginTech.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "LoginTech.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "numSerie": {
                    "type": "boolean"
                  },
                  "autenticacao": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  },
                  "dhGerarSenha": {
                    "type": "boolean"
                  },
                  "cliente": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "numSerie",
                    "autenticacao",
                    "userId",
                    "dhGerarSenha",
                    "cliente"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "LoginTech.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<LoginTech>"
      },
      "MetaCategoria.Filter": {
        "type": "object",
        "title": "MetaCategoria.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "tipoMeta": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "tipoMeta"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "MetaCategoria.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<MetaCategoria>"
      },
      "MetaCategoria.Filter1": {
        "type": "object",
        "title": "MetaCategoria.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "MetaCategoria.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "tipoMeta": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "tipoMeta"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "MetaCategoria.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<MetaCategoria>"
      },
      "Meta.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Meta.ScopeFilter"
      },
      "Meta.IncludeFilter.Items": {
        "title": "Meta.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "metaCategoria",
              "estabelecimento"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/Meta.ScopeFilter"
          }
        }
      },
      "Meta.Filter": {
        "type": "object",
        "title": "Meta.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "ano": {
                    "type": "boolean"
                  },
                  "mes": {
                    "type": "boolean"
                  },
                  "turno": {
                    "type": "boolean"
                  },
                  "diasUteis": {
                    "type": "boolean"
                  },
                  "objetivo": {
                    "type": "boolean"
                  },
                  "metaCategoriaId": {
                    "type": "boolean"
                  },
                  "estabelecimentoId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "ano",
                    "mes",
                    "turno",
                    "diasUteis",
                    "objetivo",
                    "metaCategoriaId",
                    "estabelecimentoId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "Meta.Fields"
          },
          "include": {
            "title": "Meta.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Meta.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Meta>"
      },
      "Meta.Filter1": {
        "type": "object",
        "title": "Meta.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Meta.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "ano": {
                    "type": "boolean"
                  },
                  "mes": {
                    "type": "boolean"
                  },
                  "turno": {
                    "type": "boolean"
                  },
                  "diasUteis": {
                    "type": "boolean"
                  },
                  "objetivo": {
                    "type": "boolean"
                  },
                  "metaCategoriaId": {
                    "type": "boolean"
                  },
                  "estabelecimentoId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "ano",
                    "mes",
                    "turno",
                    "diasUteis",
                    "objetivo",
                    "metaCategoriaId",
                    "estabelecimentoId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "Meta.Fields"
          },
          "include": {
            "title": "Meta.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Meta.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Meta>"
      },
      "OperadorLoginEstacao.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "OperadorLoginEstacao.ScopeFilter"
      },
      "OperadorLoginEstacao.IncludeFilter.Items": {
        "title": "OperadorLoginEstacao.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "operador",
              "estacaoTrabalho"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/OperadorLoginEstacao.ScopeFilter"
          }
        }
      },
      "OperadorLoginEstacao.Filter": {
        "type": "object",
        "title": "OperadorLoginEstacao.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "dt": {
                    "type": "boolean"
                  },
                  "tipo": {
                    "type": "boolean"
                  },
                  "localId": {
                    "type": "boolean"
                  },
                  "operadorId": {
                    "type": "boolean"
                  },
                  "estacaoTrabalhoId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "dt",
                    "tipo",
                    "localId",
                    "operadorId",
                    "estacaoTrabalhoId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperadorLoginEstacao.Fields"
          },
          "include": {
            "title": "OperadorLoginEstacao.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/OperadorLoginEstacao.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperadorLoginEstacao>"
      },
      "OperadorLoginEstacao.Filter1": {
        "type": "object",
        "title": "OperadorLoginEstacao.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperadorLoginEstacao.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "dt": {
                    "type": "boolean"
                  },
                  "tipo": {
                    "type": "boolean"
                  },
                  "localId": {
                    "type": "boolean"
                  },
                  "operadorId": {
                    "type": "boolean"
                  },
                  "estacaoTrabalhoId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "dt",
                    "tipo",
                    "localId",
                    "operadorId",
                    "estacaoTrabalhoId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperadorLoginEstacao.Fields"
          },
          "include": {
            "title": "OperadorLoginEstacao.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/OperadorLoginEstacao.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperadorLoginEstacao>"
      },
      "OperadorLogin.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "OperadorLogin.ScopeFilter"
      },
      "OperadorLogin.IncludeFilter.Items": {
        "title": "OperadorLogin.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "operador"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/OperadorLogin.ScopeFilter"
          }
        }
      },
      "OperadorLogin.Filter": {
        "type": "object",
        "title": "OperadorLogin.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "dt": {
                    "type": "boolean"
                  },
                  "dtLogout": {
                    "type": "boolean"
                  },
                  "operadorId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "dt",
                    "dtLogout",
                    "operadorId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperadorLogin.Fields"
          },
          "include": {
            "title": "OperadorLogin.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/OperadorLogin.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperadorLogin>"
      },
      "OperadorLogin.Filter1": {
        "type": "object",
        "title": "OperadorLogin.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "OperadorLogin.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "dt": {
                    "type": "boolean"
                  },
                  "dtLogout": {
                    "type": "boolean"
                  },
                  "operadorId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "dt",
                    "dtLogout",
                    "operadorId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "OperadorLogin.Fields"
          },
          "include": {
            "title": "OperadorLogin.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/OperadorLogin.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<OperadorLogin>"
      },
      "Parametro.Filter": {
        "type": "object",
        "title": "Parametro.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "chave": {
                    "type": "boolean"
                  },
                  "area": {
                    "type": "boolean"
                  },
                  "setorId": {
                    "type": "boolean"
                  },
                  "estacaoTrabalhoId": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "nivelSeguranca": {
                    "type": "boolean"
                  },
                  "observacoes": {
                    "type": "boolean"
                  },
                  "estabelecimento": {
                    "type": "boolean"
                  },
                  "app": {
                    "type": "boolean"
                  },
                  "snOuId": {
                    "type": "boolean"
                  },
                  "versaoApp": {
                    "type": "boolean"
                  },
                  "tipoValor": {
                    "type": "boolean"
                  },
                  "valor0Int": {
                    "type": "boolean"
                  },
                  "valor1Dec": {
                    "type": "boolean"
                  },
                  "valor2Str": {
                    "type": "boolean"
                  },
                  "valor3Bool": {
                    "type": "boolean"
                  },
                  "valor4Dh": {
                    "type": "boolean"
                  },
                  "parametroInterno": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "chave",
                    "area",
                    "setorId",
                    "estacaoTrabalhoId",
                    "descricao",
                    "nivelSeguranca",
                    "observacoes",
                    "estabelecimento",
                    "app",
                    "snOuId",
                    "versaoApp",
                    "tipoValor",
                    "valor0Int",
                    "valor1Dec",
                    "valor2Str",
                    "valor3Bool",
                    "valor4Dh",
                    "parametroInterno"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Parametro.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Parametro>"
      },
      "Parametro.Filter1": {
        "type": "object",
        "title": "Parametro.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Parametro.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "chave": {
                    "type": "boolean"
                  },
                  "area": {
                    "type": "boolean"
                  },
                  "setorId": {
                    "type": "boolean"
                  },
                  "estacaoTrabalhoId": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "nivelSeguranca": {
                    "type": "boolean"
                  },
                  "observacoes": {
                    "type": "boolean"
                  },
                  "estabelecimento": {
                    "type": "boolean"
                  },
                  "app": {
                    "type": "boolean"
                  },
                  "snOuId": {
                    "type": "boolean"
                  },
                  "versaoApp": {
                    "type": "boolean"
                  },
                  "tipoValor": {
                    "type": "boolean"
                  },
                  "valor0Int": {
                    "type": "boolean"
                  },
                  "valor1Dec": {
                    "type": "boolean"
                  },
                  "valor2Str": {
                    "type": "boolean"
                  },
                  "valor3Bool": {
                    "type": "boolean"
                  },
                  "valor4Dh": {
                    "type": "boolean"
                  },
                  "parametroInterno": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "chave",
                    "area",
                    "setorId",
                    "estacaoTrabalhoId",
                    "descricao",
                    "nivelSeguranca",
                    "observacoes",
                    "estabelecimento",
                    "app",
                    "snOuId",
                    "versaoApp",
                    "tipoValor",
                    "valor0Int",
                    "valor1Dec",
                    "valor2Str",
                    "valor3Bool",
                    "valor4Dh",
                    "parametroInterno"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Parametro.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Parametro>"
      },
      "Prioridade.Filter": {
        "type": "object",
        "title": "Prioridade.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "tempoHr": {
                    "type": "boolean"
                  },
                  "default": {
                    "type": "boolean"
                  },
                  "notificacaoEmHr": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "descricao",
                    "tempoHr",
                    "default",
                    "notificacaoEmHr"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Prioridade.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Prioridade>"
      },
      "Prioridade.Filter1": {
        "type": "object",
        "title": "Prioridade.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Prioridade.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "tempoHr": {
                    "type": "boolean"
                  },
                  "default": {
                    "type": "boolean"
                  },
                  "notificacaoEmHr": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "descricao",
                    "tempoHr",
                    "default",
                    "notificacaoEmHr"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Prioridade.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Prioridade>"
      },
      "RaspaCicloSerra.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "RaspaCicloSerra.ScopeFilter"
      },
      "RaspaCicloSerra.IncludeFilter.Items": {
        "title": "RaspaCicloSerra.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "raspa"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/RaspaCicloSerra.ScopeFilter"
          }
        }
      },
      "RaspaCicloSerra.Filter": {
        "type": "object",
        "title": "RaspaCicloSerra.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "cicloId": {
                    "type": "boolean"
                  },
                  "localId": {
                    "type": "boolean"
                  },
                  "qtdePneus": {
                    "type": "boolean"
                  },
                  "data": {
                    "type": "boolean"
                  },
                  "dataFinal": {
                    "type": "boolean"
                  },
                  "contadorSerra": {
                    "type": "boolean"
                  },
                  "contadorPneusInicial": {
                    "type": "boolean"
                  },
                  "contadorPneusFinal": {
                    "type": "boolean"
                  },
                  "milimetrosRaspados": {
                    "type": "boolean"
                  },
                  "Fabricante": {
                    "type": "boolean"
                  },
                  "usuario": {
                    "type": "boolean"
                  },
                  "modelo": {
                    "type": "boolean"
                  },
                  "numCiclosDB": {
                    "type": "boolean"
                  },
                  "numCiclosValidos": {
                    "type": "boolean"
                  },
                  "raspaId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "cicloId",
                    "localId",
                    "qtdePneus",
                    "data",
                    "dataFinal",
                    "contadorSerra",
                    "contadorPneusInicial",
                    "contadorPneusFinal",
                    "milimetrosRaspados",
                    "Fabricante",
                    "usuario",
                    "modelo",
                    "numCiclosDB",
                    "numCiclosValidos",
                    "raspaId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "RaspaCicloSerra.Fields"
          },
          "include": {
            "title": "RaspaCicloSerra.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/RaspaCicloSerra.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<RaspaCicloSerra>"
      },
      "RaspaCicloSerra.Filter1": {
        "type": "object",
        "title": "RaspaCicloSerra.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "RaspaCicloSerra.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "cicloId": {
                    "type": "boolean"
                  },
                  "localId": {
                    "type": "boolean"
                  },
                  "qtdePneus": {
                    "type": "boolean"
                  },
                  "data": {
                    "type": "boolean"
                  },
                  "dataFinal": {
                    "type": "boolean"
                  },
                  "contadorSerra": {
                    "type": "boolean"
                  },
                  "contadorPneusInicial": {
                    "type": "boolean"
                  },
                  "contadorPneusFinal": {
                    "type": "boolean"
                  },
                  "milimetrosRaspados": {
                    "type": "boolean"
                  },
                  "Fabricante": {
                    "type": "boolean"
                  },
                  "usuario": {
                    "type": "boolean"
                  },
                  "modelo": {
                    "type": "boolean"
                  },
                  "numCiclosDB": {
                    "type": "boolean"
                  },
                  "numCiclosValidos": {
                    "type": "boolean"
                  },
                  "raspaId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "cicloId",
                    "localId",
                    "qtdePneus",
                    "data",
                    "dataFinal",
                    "contadorSerra",
                    "contadorPneusInicial",
                    "contadorPneusFinal",
                    "milimetrosRaspados",
                    "Fabricante",
                    "usuario",
                    "modelo",
                    "numCiclosDB",
                    "numCiclosValidos",
                    "raspaId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "RaspaCicloSerra.Fields"
          },
          "include": {
            "title": "RaspaCicloSerra.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/RaspaCicloSerra.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<RaspaCicloSerra>"
      },
      "RoitreadCiclo.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "RoitreadCiclo.ScopeFilter"
      },
      "RoitreadCiclo.IncludeFilter.Items": {
        "title": "RoitreadCiclo.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "roitreadCicloEstados",
              "operador",
              "estabelecimento"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/RoitreadCiclo.ScopeFilter"
          }
        }
      },
      "RoitreadCiclo.Filter": {
        "type": "object",
        "title": "RoitreadCiclo.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "geralEmergencia": {
                    "type": "boolean"
                  },
                  "DTInicioCiclo": {
                    "type": "boolean"
                  },
                  "DTFimCiclo": {
                    "type": "boolean"
                  },
                  "ciclo": {
                    "type": "boolean"
                  },
                  "posicao": {
                    "type": "boolean"
                  },
                  "ordemServico": {
                    "type": "boolean"
                  },
                  "os": {
                    "type": "boolean"
                  },
                  "extrusoraLargura": {
                    "type": "boolean"
                  },
                  "extrusoraDTInicioCiclo": {
                    "type": "boolean"
                  },
                  "extrusoraDTFimCiclo": {
                    "type": "boolean"
                  },
                  "teveExtrusao": {
                    "type": "boolean"
                  },
                  "teveEnchimento": {
                    "type": "boolean"
                  },
                  "extrusoraCiclo": {
                    "type": "boolean"
                  },
                  "extrusoraConsumo": {
                    "type": "boolean"
                  },
                  "tempoAnteriorExtrusaoSec": {
                    "type": "boolean"
                  },
                  "tempoAplicacaoBandaSec": {
                    "type": "boolean"
                  },
                  "tempoRoletagemSec": {
                    "type": "boolean"
                  },
                  "tempoExtrusaoSec": {
                    "type": "boolean"
                  },
                  "tempoOutrosSec": {
                    "type": "boolean"
                  },
                  "roitreadId": {
                    "type": "boolean"
                  },
                  "loteEnchimento": {
                    "type": "boolean"
                  },
                  "codValidacao": {
                    "type": "boolean"
                  },
                  "codEanBanda": {
                    "type": "boolean"
                  },
                  "codNSBanda": {
                    "type": "boolean"
                  },
                  "operadorId": {
                    "type": "boolean"
                  },
                  "estabelecimentoId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "geralEmergencia",
                    "DTInicioCiclo",
                    "DTFimCiclo",
                    "ciclo",
                    "posicao",
                    "ordemServico",
                    "os",
                    "extrusoraLargura",
                    "extrusoraDTInicioCiclo",
                    "extrusoraDTFimCiclo",
                    "teveExtrusao",
                    "teveEnchimento",
                    "extrusoraCiclo",
                    "extrusoraConsumo",
                    "tempoAnteriorExtrusaoSec",
                    "tempoAplicacaoBandaSec",
                    "tempoRoletagemSec",
                    "tempoExtrusaoSec",
                    "tempoOutrosSec",
                    "roitreadId",
                    "loteEnchimento",
                    "codValidacao",
                    "codEanBanda",
                    "codNSBanda",
                    "operadorId",
                    "estabelecimentoId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "RoitreadCiclo.Fields"
          },
          "include": {
            "title": "RoitreadCiclo.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/RoitreadCiclo.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<RoitreadCiclo>"
      },
      "RoitreadCiclo.Filter1": {
        "type": "object",
        "title": "RoitreadCiclo.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "RoitreadCiclo.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "geralEmergencia": {
                    "type": "boolean"
                  },
                  "DTInicioCiclo": {
                    "type": "boolean"
                  },
                  "DTFimCiclo": {
                    "type": "boolean"
                  },
                  "ciclo": {
                    "type": "boolean"
                  },
                  "posicao": {
                    "type": "boolean"
                  },
                  "ordemServico": {
                    "type": "boolean"
                  },
                  "os": {
                    "type": "boolean"
                  },
                  "extrusoraLargura": {
                    "type": "boolean"
                  },
                  "extrusoraDTInicioCiclo": {
                    "type": "boolean"
                  },
                  "extrusoraDTFimCiclo": {
                    "type": "boolean"
                  },
                  "teveExtrusao": {
                    "type": "boolean"
                  },
                  "teveEnchimento": {
                    "type": "boolean"
                  },
                  "extrusoraCiclo": {
                    "type": "boolean"
                  },
                  "extrusoraConsumo": {
                    "type": "boolean"
                  },
                  "tempoAnteriorExtrusaoSec": {
                    "type": "boolean"
                  },
                  "tempoAplicacaoBandaSec": {
                    "type": "boolean"
                  },
                  "tempoRoletagemSec": {
                    "type": "boolean"
                  },
                  "tempoExtrusaoSec": {
                    "type": "boolean"
                  },
                  "tempoOutrosSec": {
                    "type": "boolean"
                  },
                  "roitreadId": {
                    "type": "boolean"
                  },
                  "loteEnchimento": {
                    "type": "boolean"
                  },
                  "codValidacao": {
                    "type": "boolean"
                  },
                  "codEanBanda": {
                    "type": "boolean"
                  },
                  "codNSBanda": {
                    "type": "boolean"
                  },
                  "operadorId": {
                    "type": "boolean"
                  },
                  "estabelecimentoId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "geralEmergencia",
                    "DTInicioCiclo",
                    "DTFimCiclo",
                    "ciclo",
                    "posicao",
                    "ordemServico",
                    "os",
                    "extrusoraLargura",
                    "extrusoraDTInicioCiclo",
                    "extrusoraDTFimCiclo",
                    "teveExtrusao",
                    "teveEnchimento",
                    "extrusoraCiclo",
                    "extrusoraConsumo",
                    "tempoAnteriorExtrusaoSec",
                    "tempoAplicacaoBandaSec",
                    "tempoRoletagemSec",
                    "tempoExtrusaoSec",
                    "tempoOutrosSec",
                    "roitreadId",
                    "loteEnchimento",
                    "codValidacao",
                    "codEanBanda",
                    "codNSBanda",
                    "operadorId",
                    "estabelecimentoId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "RoitreadCiclo.Fields"
          },
          "include": {
            "title": "RoitreadCiclo.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/RoitreadCiclo.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<RoitreadCiclo>"
      },
      "Roitread.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Roitread.ScopeFilter"
      },
      "Roitread.IncludeFilter.Items": {
        "title": "Roitread.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "roitreadCiclos",
              "estabelecimento"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/Roitread.ScopeFilter"
          }
        }
      },
      "Roitread.Filter": {
        "type": "object",
        "title": "Roitread.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "modelo": {
                    "type": "boolean"
                  },
                  "estabelecimentoId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "modelo",
                    "estabelecimentoId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "Roitread.Fields"
          },
          "include": {
            "title": "Roitread.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Roitread.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Roitread>"
      },
      "Roitread.Filter1": {
        "type": "object",
        "title": "Roitread.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Roitread.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "modelo": {
                    "type": "boolean"
                  },
                  "estabelecimentoId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao",
                    "modelo",
                    "estabelecimentoId"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "Roitread.Fields"
          },
          "include": {
            "title": "Roitread.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Roitread.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Roitread>"
      },
      "SituacaoOs.Filter": {
        "type": "object",
        "title": "SituacaoOs.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "descricao"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "SituacaoOs.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<SituacaoOs>"
      },
      "SituacaoOs.Filter1": {
        "type": "object",
        "title": "SituacaoOs.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "SituacaoOs.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "descricao"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "SituacaoOs.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<SituacaoOs>"
      },
      "Tag.ScopeFilter": {
        "type": "object",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {},
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                },
                "uniqueItems": true
              }
            ]
          },
          "include": {
            "type": "array",
            "items": {
              "type": "object",
              "properties": {},
              "additionalProperties": true
            }
          }
        },
        "additionalProperties": false,
        "title": "Tag.ScopeFilter"
      },
      "Tag.IncludeFilter.Items": {
        "title": "Tag.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "tipoTag"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/Tag.ScopeFilter"
          }
        }
      },
      "Tag.Filter": {
        "type": "object",
        "title": "Tag.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "codigo": {
                    "type": "boolean"
                  },
                  "simbolo": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "acaoTecnico": {
                    "type": "boolean"
                  },
                  "tipoTagId": {
                    "type": "boolean"
                  },
                  "modeloCLP": {
                    "type": "boolean"
                  },
                  "tipoVariavelLeitura": {
                    "type": "boolean"
                  },
                  "fonteLeituraEnderecoCLP": {
                    "type": "boolean"
                  },
                  "enderecoCLPst": {
                    "type": "boolean"
                  },
                  "enderecoCLPint": {
                    "type": "boolean"
                  },
                  "enderecoCLPBit": {
                    "type": "boolean"
                  },
                  "posicaoBitClp": {
                    "type": "boolean"
                  },
                  "tipoPropriedadeEscrita": {
                    "type": "boolean"
                  },
                  "ondeGravar": {
                    "type": "boolean"
                  },
                  "propriedade": {
                    "type": "boolean"
                  },
                  "multiplicaPor": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "codigo",
                    "simbolo",
                    "descricao",
                    "acaoTecnico",
                    "tipoTagId",
                    "modeloCLP",
                    "tipoVariavelLeitura",
                    "fonteLeituraEnderecoCLP",
                    "enderecoCLPst",
                    "enderecoCLPint",
                    "enderecoCLPBit",
                    "posicaoBitClp",
                    "tipoPropriedadeEscrita",
                    "ondeGravar",
                    "propriedade",
                    "multiplicaPor"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "Tag.Fields"
          },
          "include": {
            "title": "Tag.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Tag.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Tag>"
      },
      "Tag.Filter1": {
        "type": "object",
        "title": "Tag.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Tag.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "codigo": {
                    "type": "boolean"
                  },
                  "simbolo": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  },
                  "acaoTecnico": {
                    "type": "boolean"
                  },
                  "tipoTagId": {
                    "type": "boolean"
                  },
                  "modeloCLP": {
                    "type": "boolean"
                  },
                  "tipoVariavelLeitura": {
                    "type": "boolean"
                  },
                  "fonteLeituraEnderecoCLP": {
                    "type": "boolean"
                  },
                  "enderecoCLPst": {
                    "type": "boolean"
                  },
                  "enderecoCLPint": {
                    "type": "boolean"
                  },
                  "enderecoCLPBit": {
                    "type": "boolean"
                  },
                  "posicaoBitClp": {
                    "type": "boolean"
                  },
                  "tipoPropriedadeEscrita": {
                    "type": "boolean"
                  },
                  "ondeGravar": {
                    "type": "boolean"
                  },
                  "propriedade": {
                    "type": "boolean"
                  },
                  "multiplicaPor": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "codigo",
                    "simbolo",
                    "descricao",
                    "acaoTecnico",
                    "tipoTagId",
                    "modeloCLP",
                    "tipoVariavelLeitura",
                    "fonteLeituraEnderecoCLP",
                    "enderecoCLPst",
                    "enderecoCLPint",
                    "enderecoCLPBit",
                    "posicaoBitClp",
                    "tipoPropriedadeEscrita",
                    "ondeGravar",
                    "propriedade",
                    "multiplicaPor"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "Tag.Fields"
          },
          "include": {
            "title": "Tag.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/Tag.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Tag>"
      },
      "Test.Filter": {
        "type": "object",
        "title": "Test.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "Test.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "Descricao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "Descricao"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Test.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<Test>"
      },
      "TipoTag.Filter": {
        "type": "object",
        "title": "TipoTag.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "TipoTag.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<TipoTag>"
      },
      "TipoTag.Filter1": {
        "type": "object",
        "title": "TipoTag.Filter",
        "properties": {
          "offset": {
            "type": "integer",
            "minimum": 0
          },
          "limit": {
            "type": "integer",
            "minimum": 1,
            "example": 100
          },
          "skip": {
            "type": "integer",
            "minimum": 0
          },
          "order": {
            "oneOf": [
              {
                "type": "string"
              },
              {
                "type": "array",
                "items": {
                  "type": "string"
                }
              }
            ]
          },
          "where": {
            "title": "TipoTag.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deleted": {
                    "type": "boolean"
                  },
                  "createdOn": {
                    "type": "boolean"
                  },
                  "modifiedOn": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "descricao": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deleted",
                    "createdOn",
                    "modifiedOn",
                    "id",
                    "descricao"
                  ],
                  "example": "deleted"
                },
                "uniqueItems": true
              }
            ],
            "title": "TipoTag.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<TipoTag>"
      },
      "CreateFullUser": {
        "type": "object",
        "title": "CreateFullUser",
        "required": [
          "username",
          "firstName",
          "defaultTenant",
          "roleId"
        ],
        "properties": {
          "username": {
            "type": "string"
          },
          "firstName": {
            "type": "string"
          },
          "lastName": {
            "type": "string"
          },
          "defaultTenant": {
            "type": "number"
          },
          "roleId": {
            "type": "number"
          },
          "thotTenants": {
            "type": "string"
          },
          "password": {
            "type": "string"
          }
        }
      },
      "AdminChangePasswordResponse": {
        "type": "object",
        "title": "AdminChangePasswordResponse",
        "properties": {
          "success": {
            "type": "boolean"
          }
        }
      },
      "AdminChangePassword": {
        "type": "object",
        "title": "AdminChangePassword",
        "required": [
          "newPassword"
        ],
        "properties": {
          "newPassword": {
            "type": "string"
          }
        }
      },
      "GenerateResetLinkResponse": {
        "type": "object",
        "title": "GenerateResetLinkResponse",
        "properties": {
          "link": {
            "type": "string"
          },
          "token": {
            "type": "string"
          }
        }
      }
    }
  },
  "servers": [
    {
      "url": "https://api-i4.digama.com.br"
    }
  ],
  "security": [
    {
      "jwt": []
    }
  ]
}