{
  "openapi": "3.0.0",
  "info": {
    "title": "grasmcp-grapi",
    "version": "0.0.1",
    "description": "grasmcp-grapi of grapple-solutions.com",
    "contact": {
      "name": "grapple-solutions.com",
      "email": "info@grapple-solutions.com"
    }
  },
  "paths": {
    "/alhs/ai-chat": {
      "post": {
        "x-controller-name": "alhsAiChatMcpController",
        "x-operation-name": "chat",
        "tags": [
          "alhsAiChatMcpController"
        ],
        "responses": {
          "200": {
            "description": "AI chat response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "text": {
                      "type": "string"
                    },
                    "toolInvocations": {
                      "type": "array"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "provider",
                  "model",
                  "apiKey",
                  "messages"
                ],
                "properties": {
                  "provider": {
                    "type": "string",
                    "example": "openai"
                  },
                  "model": {
                    "type": "string",
                    "example": "gpt-4o-mini"
                  },
                  "apiKey": {
                    "type": "string"
                  },
                  "baseUrl": {
                    "type": "string"
                  },
                  "messages": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "role": {
                          "type": "string",
                          "enum": [
                            "user",
                            "assistant",
                            "system"
                          ]
                        },
                        "content": {
                          "type": "string"
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsAiChatMcpController.chat"
      }
    },
    "/alhs/alace/addresses/count": {
      "get": {
        "x-controller-name": "alhsalaceAddressesController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceAddressesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceAddresses count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceAddresses.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceAddresses.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceAddresses>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceAddressesController.count"
      }
    },
    "/alhs/alace/addresses/{id}": {
      "put": {
        "x-controller-name": "alhsalaceAddressesController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalaceAddressesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceAddresses was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceAddresses"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceAddressesController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalaceAddressesController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalaceAddressesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceAddresses was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceAddressesPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceAddressesController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalaceAddressesController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceAddressesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceAddresses instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceAddressesWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceAddresses.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceAddressesController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalaceAddressesController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalaceAddressesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceAddresses was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceAddressesController.deleteById"
      }
    },
    "/alhs/alace/addresses": {
      "post": {
        "x-controller-name": "alhsalaceAddressesController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceAddressesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceAddresses instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceAddresses"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewAddresses"
              }
            }
          }
        },
        "operationId": "alhsalaceAddressesController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceAddressesController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalaceAddressesController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalaceAddresses models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceAddresses.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceAddresses>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceAddressesPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceAddressesController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalaceAddressesController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceAddressesController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceAddresses instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceAddressesWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceAddresses.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceAddressesController.find"
      }
    },
    "/alhs/alace/aws-partner-central/accept-engagement-invitation": {
      "post": {
        "x-controller-name": "alhsalaceAWSPartnerCentralController",
        "x-operation-name": "acceptEngagementInvitation",
        "tags": [
          "alhsalaceAWSPartnerCentralController"
        ],
        "responses": {
          "200": {
            "description": "AWS engagement invitation accept result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "accepted": {
                      "type": "boolean"
                    },
                    "inProgress": {
                      "type": "boolean"
                    },
                    "message": {
                      "type": "string"
                    },
                    "task": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "identifier"
                ],
                "properties": {
                  "identifier": {
                    "type": "string",
                    "description": "AWS Engagement Invitation Identifier",
                    "example": "engi-0000000000000"
                  },
                  "clientToken": {
                    "type": "string",
                    "description": "Idempotency token for the AWS accept task"
                  }
                }
              }
            }
          },
          "description": "Accept AWS engagement invitation",
          "required": true
        },
        "operationId": "alhsalaceAWSPartnerCentralController.acceptEngagementInvitation"
      }
    },
    "/alhs/alace/aws-partner-central/assign-opportunity": {
      "post": {
        "x-controller-name": "alhsalaceAWSPartnerCentralController",
        "x-operation-name": "assignAwsOpp",
        "tags": [
          "alhsalaceAWSPartnerCentralController"
        ],
        "responses": {
          "200": {
            "description": "Assign opportunity result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "identifier",
                  "email"
                ],
                "properties": {
                  "identifier": {
                    "type": "string",
                    "description": "AWS Opportunity Identifier",
                    "example": "opp-1234567890"
                  },
                  "email": {
                    "type": "string",
                    "format": "email",
                    "description": "Email of the assignee",
                    "example": "john.doe@example.com"
                  },
                  "firstName": {
                    "type": "string",
                    "example": "John"
                  },
                  "lastName": {
                    "type": "string",
                    "example": "Doe"
                  },
                  "phone": {
                    "type": "string",
                    "example": "+1-202-555-0100"
                  },
                  "businessTitle": {
                    "type": "string",
                    "example": "PartnerAccountManager"
                  }
                }
              }
            }
          },
          "description": "Assign an AWS Opportunity to a user",
          "required": true
        },
        "operationId": "alhsalaceAWSPartnerCentralController.assignAwsOpp"
      }
    },
    "/alhs/alace/aws-partner-central/get-engagement-invitation": {
      "post": {
        "x-controller-name": "alhsalaceAWSPartnerCentralController",
        "x-operation-name": "getEngagementInvitation",
        "tags": [
          "alhsalaceAWSPartnerCentralController"
        ],
        "responses": {
          "200": {
            "description": "AWS engagement invitation details",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "error": {
                      "type": "string"
                    },
                    "invitation": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "Identifier"
                ],
                "properties": {
                  "Identifier": {
                    "type": "string",
                    "description": "AWS Engagement Invitation Identifier",
                    "example": "engi-0000000000000"
                  }
                }
              }
            }
          },
          "description": "AWS engagement invitation lookup request",
          "required": true
        },
        "operationId": "alhsalaceAWSPartnerCentralController.getEngagementInvitation"
      }
    },
    "/alhs/alace/aws-partner-central/get-opportunity": {
      "post": {
        "x-controller-name": "alhsalaceAWSPartnerCentralController",
        "x-operation-name": "getAwsOpp",
        "tags": [
          "alhsalaceAWSPartnerCentralController"
        ],
        "responses": {
          "200": {
            "description": "AWS Opportunity details",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "error": {
                      "type": "string"
                    },
                    "opportunity": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "Identifier"
                ],
                "properties": {
                  "Identifier": {
                    "type": "string",
                    "description": "AWS Opportunity Identifier",
                    "example": "opp-1234567890"
                  }
                }
              }
            }
          },
          "description": "AWS Opportunity lookup request",
          "required": true
        },
        "operationId": "alhsalaceAWSPartnerCentralController.getAwsOpp"
      }
    },
    "/alhs/alace/aws-partner-central/list-aws-opps": {
      "get": {
        "x-controller-name": "alhsalaceAWSPartnerCentralController",
        "x-operation-name": "getAwsOpps",
        "tags": [
          "alhsalaceAWSPartnerCentralController"
        ],
        "responses": {
          "200": {
            "description": "All opportunities fetched from AWS with total count",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "count": {
                      "type": "number"
                    },
                    "opps": {
                      "type": "array",
                      "items": {
                        "type": "object"
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsalaceAWSPartnerCentralController.getAwsOpps"
      }
    },
    "/alhs/alace/aws-partner-central/list-solutions": {
      "get": {
        "x-controller-name": "alhsalaceAWSPartnerCentralController",
        "x-operation-name": "getAwsSols",
        "tags": [
          "alhsalaceAWSPartnerCentralController"
        ],
        "responses": {
          "200": {
            "description": "List of all active AWS solutions",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "SolutionSummaries": {
                      "type": "array",
                      "items": {
                        "type": "object"
                      }
                    },
                    "count": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsalaceAWSPartnerCentralController.getAwsSols"
      }
    },
    "/alhs/alace/aws-partner-central/products": {
      "get": {
        "x-controller-name": "alhsalaceAWSPartnerCentralController",
        "x-operation-name": "getProducts",
        "tags": [
          "alhsalaceAWSPartnerCentralController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AWS Products"
                }
              }
            }
          }
        },
        "operationId": "alhsalaceAWSPartnerCentralController.getProducts"
      }
    },
    "/alhs/alace/aws-partner-central/reject-engagement-invitation": {
      "post": {
        "x-controller-name": "alhsalaceAWSPartnerCentralController",
        "x-operation-name": "rejectEngagementInvitation",
        "tags": [
          "alhsalaceAWSPartnerCentralController"
        ],
        "responses": {
          "200": {
            "description": "AWS engagement invitation reject result",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "identifier",
                  "rejectionReason"
                ],
                "properties": {
                  "identifier": {
                    "type": "string",
                    "description": "AWS Engagement Invitation Identifier",
                    "example": "engi-0000000000000"
                  },
                  "rejectionReason": {
                    "type": "string",
                    "enum": [
                      "Customer problem unclear",
                      "Next steps unclear",
                      "Unable to support",
                      "Duplicate of partner referral",
                      "Other"
                    ]
                  }
                }
              }
            }
          },
          "description": "Reject AWS engagement invitation",
          "required": true
        },
        "operationId": "alhsalaceAWSPartnerCentralController.rejectEngagementInvitation"
      }
    },
    "/alhs/alace/aws-partner-events-webhook": {
      "post": {
        "x-controller-name": "alhsalaceAWSPartnerEventsWebhookController",
        "x-operation-name": "receiveEvent",
        "tags": [
          "alhsalaceAWSPartnerEventsWebhookController"
        ],
        "responses": {
          "200": {
            "description": "alhsWebhook endpoint for AWS Partner Central events",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "message": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "AWS Partner Central event data from SQS",
          "required": true
        },
        "operationId": "alhsalaceAWSPartnerEventsWebhookController.receiveEvent"
      }
    },
    "/alhs/alace/aws-products/count": {
      "get": {
        "x-controller-name": "alhsalaceAwsProductController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceAwsProductController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceAwsProduct count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceAwsProduct.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceAwsProduct.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceAwsProduct>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceAwsProductController.count"
      }
    },
    "/alhs/alace/aws-products/{id}": {
      "put": {
        "x-controller-name": "alhsalaceAwsProductController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalaceAwsProductController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceAwsProduct was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceAwsProduct"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceAwsProductController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalaceAwsProductController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalaceAwsProductController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceAwsProduct was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceAwsProductPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceAwsProductController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalaceAwsProductController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceAwsProductController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceAwsProduct instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceAwsProductWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceAwsProduct.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceAwsProductController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalaceAwsProductController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalaceAwsProductController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceAwsProduct was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceAwsProductController.deleteById"
      }
    },
    "/alhs/alace/aws-products": {
      "post": {
        "x-controller-name": "alhsalaceAwsProductController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceAwsProductController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceAwsProduct instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceAwsProduct"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewAwsProduct"
              }
            }
          }
        },
        "operationId": "alhsalaceAwsProductController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceAwsProductController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalaceAwsProductController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalaceAwsProduct models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceAwsProduct.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceAwsProduct>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceAwsProductPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceAwsProductController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalaceAwsProductController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceAwsProductController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceAwsProduct instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceAwsProductWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceAwsProduct.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceAwsProductController.find"
      }
    },
    "/alhs/alace/bulk-sync/config": {
      "post": {
        "x-controller-name": "alhsalaceBulkSyncSchedulerController",
        "x-operation-name": "updateConfig",
        "tags": [
          "alhsalaceBulkSyncSchedulerController"
        ],
        "responses": {
          "200": {
            "description": "Update config for bulk sync AWS job",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "config": {
                      "type": "object"
                    },
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "schedule": {
                    "type": "string"
                  },
                  "timezone": {
                    "type": "string"
                  },
                  "enabled": {
                    "type": "number"
                  }
                }
              }
            }
          },
          "description": "Bulk sync config updates",
          "required": true
        },
        "operationId": "alhsalaceBulkSyncSchedulerController.updateConfig"
      },
      "get": {
        "x-controller-name": "alhsalaceBulkSyncSchedulerController",
        "x-operation-name": "getConfig",
        "tags": [
          "alhsalaceBulkSyncSchedulerController"
        ],
        "responses": {
          "200": {
            "description": "Get config for bulk sync AWS job (DB and running)",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "db": {
                      "type": "object"
                    },
                    "running": {
                      "type": "object"
                    },
                    "synced": {
                      "type": "boolean"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsalaceBulkSyncSchedulerController.getConfig"
      }
    },
    "/alhs/alace/contacts/count": {
      "get": {
        "x-controller-name": "alhsalaceContactsController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceContactsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceContacts count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceContacts.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceContacts.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceContacts>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceContactsController.count"
      }
    },
    "/alhs/alace/contacts/{id}": {
      "put": {
        "x-controller-name": "alhsalaceContactsController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalaceContactsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceContacts was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceContacts"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceContactsController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalaceContactsController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalaceContactsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceContacts was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceContactsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceContactsController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalaceContactsController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceContactsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceContacts instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceContactsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceContacts.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceContactsController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalaceContactsController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalaceContactsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceContacts was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceContactsController.deleteById"
      }
    },
    "/alhs/alace/contacts": {
      "post": {
        "x-controller-name": "alhsalaceContactsController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceContactsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceContacts instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceContacts"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewContacts"
              }
            }
          }
        },
        "operationId": "alhsalaceContactsController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceContactsController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalaceContactsController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalaceContacts models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceContacts.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceContacts>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceContactsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceContactsController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalaceContactsController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceContactsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceContacts instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceContactsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceContacts.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceContactsController.find"
      }
    },
    "/alhs/alace/cron/jobs/{name}/config": {
      "post": {
        "x-controller-name": "alhsalaceCronSchedulerController",
        "x-operation-name": "updateJobConfig",
        "tags": [
          "alhsalaceCronSchedulerController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Update cron job config"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "schedule": {
                    "type": "string"
                  },
                  "timezone": {
                    "type": "string"
                  },
                  "enabled": {
                    "type": "number"
                  }
                }
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceCronSchedulerController.updateJobConfig"
      },
      "get": {
        "x-controller-name": "alhsalaceCronSchedulerController",
        "x-operation-name": "getJobConfig",
        "tags": [
          "alhsalaceCronSchedulerController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Get cron job config and running status"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceCronSchedulerController.getJobConfig"
      }
    },
    "/alhs/alace/cron/reload": {
      "post": {
        "x-controller-name": "alhsalaceCronSchedulerController",
        "x-operation-name": "reload",
        "tags": [
          "alhsalaceCronSchedulerController"
        ],
        "responses": {
          "200": {
            "description": "Reload cron configuration from database",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "schedule": {
                      "type": "string"
                    },
                    "enabled": {
                      "type": "boolean"
                    },
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsalaceCronSchedulerController.reload"
      }
    },
    "/alhs/alace/cron/status": {
      "get": {
        "x-controller-name": "alhsalaceCronSchedulerController",
        "x-operation-name": "getStatus",
        "tags": [
          "alhsalaceCronSchedulerController"
        ],
        "responses": {
          "200": {
            "description": "Get cron job status",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "name": {
                      "type": "string"
                    },
                    "schedule": {
                      "type": "string"
                    },
                    "running": {
                      "type": "boolean"
                    },
                    "lastRun": {
                      "type": "string"
                    },
                    "nextRun": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsalaceCronSchedulerController.getStatus"
      }
    },
    "/alhs/alace/cron/trigger": {
      "post": {
        "x-controller-name": "alhsalaceCronSchedulerController",
        "x-operation-name": "trigger",
        "tags": [
          "alhsalaceCronSchedulerController"
        ],
        "responses": {
          "200": {
            "description": "Manually trigger the cron job",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsalaceCronSchedulerController.trigger"
      }
    },
    "/alhs/alace/customers/count": {
      "get": {
        "x-controller-name": "alhsalaceCustomersController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceCustomersController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceCustomers count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceCustomers.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceCustomers.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceCustomers>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceCustomersController.count"
      }
    },
    "/alhs/alace/customers/{id}/addresses": {
      "get": {
        "x-controller-name": "alhsalaceCustomersAddressesController",
        "x-operation-name": "getAddresses",
        "tags": [
          "alhsalaceCustomersAddressesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceAddresses belonging to alhsalaceCustomers",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceAddresses"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceCustomersAddressesController.getalhsalaceAddresses"
      }
    },
    "/alhs/alace/customers/{id}/contacts": {
      "post": {
        "x-controller-name": "alhsalaceCustomersContactsController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceCustomersContactsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceCustomers model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceContacts"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewContactsInCustomers"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceCustomersContactsController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceCustomersContactsController",
        "x-operation-name": "patch",
        "tags": [
          "alhsalaceCustomersContactsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceCustomers.alhsalaceContacts PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceContacts.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceContacts>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceContactsPartial"
              }
            }
          },
          "x-parameter-index": 2
        },
        "operationId": "alhsalaceCustomersContactsController.patch"
      },
      "get": {
        "x-controller-name": "alhsalaceCustomersContactsController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceCustomersContactsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceCustomers has many alhsalaceContacts",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceContacts"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceCustomersContactsController.find"
      },
      "delete": {
        "x-controller-name": "alhsalaceCustomersContactsController",
        "x-operation-name": "delete",
        "tags": [
          "alhsalaceCustomersContactsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceCustomers.alhsalaceContacts DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceContacts.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceContacts>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceCustomersContactsController.delete"
      }
    },
    "/alhs/alace/customers/{id}": {
      "put": {
        "x-controller-name": "alhsalaceCustomersController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalaceCustomersController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceCustomers was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceCustomers"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceCustomersController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalaceCustomersController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalaceCustomersController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceCustomers was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceCustomersPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceCustomersController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalaceCustomersController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceCustomersController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceCustomers instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceCustomersWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceCustomers.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceCustomersController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalaceCustomersController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalaceCustomersController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceCustomers was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceCustomersController.deleteById"
      }
    },
    "/alhs/alace/customers": {
      "post": {
        "x-controller-name": "alhsalaceCustomersController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceCustomersController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceCustomers instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceCustomers"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewCustomers"
              }
            }
          }
        },
        "operationId": "alhsalaceCustomersController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceCustomersController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalaceCustomersController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalaceCustomers models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceCustomers.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceCustomers>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceCustomersPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceCustomersController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalaceCustomersController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceCustomersController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceCustomers instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceCustomersWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceCustomers.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceCustomersController.find"
      }
    },
    "/alhs/alace/delivery-models/count": {
      "get": {
        "x-controller-name": "alhsalaceDeliveryModelsController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceDeliveryModelsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceDeliveryModels count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceDeliveryModels.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceDeliveryModels.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceDeliveryModels>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceDeliveryModelsController.count"
      }
    },
    "/alhs/alace/delivery-models/{id}": {
      "put": {
        "x-controller-name": "alhsalaceDeliveryModelsController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalaceDeliveryModelsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceDeliveryModels was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceDeliveryModels"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceDeliveryModelsController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalaceDeliveryModelsController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalaceDeliveryModelsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceDeliveryModels was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceDeliveryModelsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceDeliveryModelsController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalaceDeliveryModelsController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceDeliveryModelsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceDeliveryModels instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceDeliveryModelsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceDeliveryModels.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceDeliveryModelsController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalaceDeliveryModelsController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalaceDeliveryModelsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceDeliveryModels was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceDeliveryModelsController.deleteById"
      }
    },
    "/alhs/alace/delivery-models": {
      "post": {
        "x-controller-name": "alhsalaceDeliveryModelsController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceDeliveryModelsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceDeliveryModels instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceDeliveryModels"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewDeliveryModels"
              }
            }
          }
        },
        "operationId": "alhsalaceDeliveryModelsController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceDeliveryModelsController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalaceDeliveryModelsController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalaceDeliveryModels models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceDeliveryModels.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceDeliveryModels>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceDeliveryModelsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceDeliveryModelsController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalaceDeliveryModelsController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceDeliveryModelsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceDeliveryModels instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceDeliveryModelsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceDeliveryModels.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceDeliveryModelsController.find"
      }
    },
    "/alhs/alace/engagement-invitations": {
      "get": {
        "x-controller-name": "alhsalaceAWSPartnerCentralController",
        "x-operation-name": "findEngagementInvitations",
        "tags": [
          "alhsalaceAWSPartnerCentralController"
        ],
        "responses": {
          "200": {
            "description": "List of AWS engagement invitations",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "alhsalaceAWSPartnerCentralController.findEngagementInvitations"
      }
    },
    "/alhs/alace/grapple-audit-logs/count": {
      "get": {
        "x-controller-name": "alhsalaceGrappleAuditLogController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceGrappleAuditLogController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceGrappleAuditLog count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceGrappleAuditLog.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceGrappleAuditLog.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceGrappleAuditLog>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceGrappleAuditLogController.count"
      }
    },
    "/alhs/alace/grapple-audit-logs/{id}": {
      "get": {
        "x-controller-name": "alhsalaceGrappleAuditLogController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceGrappleAuditLogController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceGrappleAuditLog instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceGrappleAuditLogWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceGrappleAuditLog.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceGrappleAuditLogController.findById"
      }
    },
    "/alhs/alace/grapple-audit-logs": {
      "get": {
        "x-controller-name": "alhsalaceGrappleAuditLogController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceGrappleAuditLogController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceGrappleAuditLog instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceGrappleAuditLogWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceGrappleAuditLog.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceGrappleAuditLogController.find"
      }
    },
    "/alhs/alace/marketing-activities/count": {
      "get": {
        "x-controller-name": "alhsalaceMarketingActivitiesController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceMarketingActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingActivities count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingActivities.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceMarketingActivities.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceMarketingActivities>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceMarketingActivitiesController.count"
      }
    },
    "/alhs/alace/marketing-activities/{id}/marketing-channels": {
      "post": {
        "x-controller-name": "alhsalaceMarketingActivitiesMarketingChannelsController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceMarketingActivitiesMarketingChannelsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingActivities model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingChannels"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewMarketingChannelsInMarketingActivities"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceMarketingActivitiesMarketingChannelsController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceMarketingActivitiesMarketingChannelsController",
        "x-operation-name": "patch",
        "tags": [
          "alhsalaceMarketingActivitiesMarketingChannelsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingActivities.alhsalaceMarketingChannels PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceMarketingChannels.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceMarketingChannels>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceMarketingChannelsPartial"
              }
            }
          },
          "x-parameter-index": 2
        },
        "operationId": "alhsalaceMarketingActivitiesMarketingChannelsController.patch"
      },
      "get": {
        "x-controller-name": "alhsalaceMarketingActivitiesMarketingChannelsController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceMarketingActivitiesMarketingChannelsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceMarketingActivities has many alhsalaceMarketingChannels",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceMarketingChannels"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceMarketingActivitiesMarketingChannelsController.find"
      },
      "delete": {
        "x-controller-name": "alhsalaceMarketingActivitiesMarketingChannelsController",
        "x-operation-name": "delete",
        "tags": [
          "alhsalaceMarketingActivitiesMarketingChannelsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingActivities.alhsalaceMarketingChannels DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceMarketingChannels.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceMarketingChannels>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceMarketingActivitiesMarketingChannelsController.delete"
      }
    },
    "/alhs/alace/marketing-activities/{id}/marketing-use-cases": {
      "post": {
        "x-controller-name": "alhsalaceMarketingActivitiesMarketingUseCasesController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceMarketingActivitiesMarketingUseCasesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingActivities model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingUseCases"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewMarketingUseCasesInMarketingActivities"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceMarketingActivitiesMarketingUseCasesController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceMarketingActivitiesMarketingUseCasesController",
        "x-operation-name": "patch",
        "tags": [
          "alhsalaceMarketingActivitiesMarketingUseCasesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingActivities.alhsalaceMarketingUseCases PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceMarketingUseCases.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceMarketingUseCases>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceMarketingUseCasesPartial"
              }
            }
          },
          "x-parameter-index": 2
        },
        "operationId": "alhsalaceMarketingActivitiesMarketingUseCasesController.patch"
      },
      "get": {
        "x-controller-name": "alhsalaceMarketingActivitiesMarketingUseCasesController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceMarketingActivitiesMarketingUseCasesController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceMarketingActivities has many alhsalaceMarketingUseCases",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceMarketingUseCases"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceMarketingActivitiesMarketingUseCasesController.find"
      },
      "delete": {
        "x-controller-name": "alhsalaceMarketingActivitiesMarketingUseCasesController",
        "x-operation-name": "delete",
        "tags": [
          "alhsalaceMarketingActivitiesMarketingUseCasesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingActivities.alhsalaceMarketingUseCases DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceMarketingUseCases.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceMarketingUseCases>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceMarketingActivitiesMarketingUseCasesController.delete"
      }
    },
    "/alhs/alace/marketing-activities/{id}": {
      "put": {
        "x-controller-name": "alhsalaceMarketingActivitiesController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalaceMarketingActivitiesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceMarketingActivities was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceMarketingActivities"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceMarketingActivitiesController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalaceMarketingActivitiesController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalaceMarketingActivitiesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceMarketingActivities was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceMarketingActivitiesPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceMarketingActivitiesController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalaceMarketingActivitiesController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceMarketingActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingActivities instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingActivitiesWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingActivities.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceMarketingActivitiesController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalaceMarketingActivitiesController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalaceMarketingActivitiesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceMarketingActivities was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceMarketingActivitiesController.deleteById"
      }
    },
    "/alhs/alace/marketing-activities": {
      "post": {
        "x-controller-name": "alhsalaceMarketingActivitiesController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceMarketingActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingActivities instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingActivities"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewMarketingActivities"
              }
            }
          }
        },
        "operationId": "alhsalaceMarketingActivitiesController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceMarketingActivitiesController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalaceMarketingActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalaceMarketingActivities models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceMarketingActivities.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceMarketingActivities>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceMarketingActivitiesPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceMarketingActivitiesController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalaceMarketingActivitiesController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceMarketingActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceMarketingActivities instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceMarketingActivitiesWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingActivities.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceMarketingActivitiesController.find"
      }
    },
    "/alhs/alace/marketing-channels/count": {
      "get": {
        "x-controller-name": "alhsalaceMarketingChannelsController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceMarketingChannelsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingChannels count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingChannels.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceMarketingChannels.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceMarketingChannels>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceMarketingChannelsController.count"
      }
    },
    "/alhs/alace/marketing-channels/{id}": {
      "put": {
        "x-controller-name": "alhsalaceMarketingChannelsController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalaceMarketingChannelsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceMarketingChannels was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceMarketingChannels"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceMarketingChannelsController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalaceMarketingChannelsController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalaceMarketingChannelsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceMarketingChannels was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceMarketingChannelsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceMarketingChannelsController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalaceMarketingChannelsController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceMarketingChannelsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingChannels instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingChannelsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingChannels.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceMarketingChannelsController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalaceMarketingChannelsController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalaceMarketingChannelsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceMarketingChannels was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceMarketingChannelsController.deleteById"
      }
    },
    "/alhs/alace/marketing-channels": {
      "post": {
        "x-controller-name": "alhsalaceMarketingChannelsController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceMarketingChannelsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingChannels instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingChannels"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewMarketingChannels"
              }
            }
          }
        },
        "operationId": "alhsalaceMarketingChannelsController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceMarketingChannelsController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalaceMarketingChannelsController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalaceMarketingChannels models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceMarketingChannels.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceMarketingChannels>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceMarketingChannelsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceMarketingChannelsController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalaceMarketingChannelsController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceMarketingChannelsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceMarketingChannels instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceMarketingChannelsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingChannels.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceMarketingChannelsController.find"
      }
    },
    "/alhs/alace/marketing-use-cases/count": {
      "get": {
        "x-controller-name": "alhsalaceMarketingUseCasesController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceMarketingUseCasesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingUseCases count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingUseCases.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceMarketingUseCases.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceMarketingUseCases>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceMarketingUseCasesController.count"
      }
    },
    "/alhs/alace/marketing-use-cases/{id}": {
      "put": {
        "x-controller-name": "alhsalaceMarketingUseCasesController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalaceMarketingUseCasesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceMarketingUseCases was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceMarketingUseCases"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceMarketingUseCasesController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalaceMarketingUseCasesController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalaceMarketingUseCasesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceMarketingUseCases was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceMarketingUseCasesPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceMarketingUseCasesController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalaceMarketingUseCasesController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceMarketingUseCasesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingUseCases instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingUseCasesWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingUseCases.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceMarketingUseCasesController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalaceMarketingUseCasesController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalaceMarketingUseCasesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceMarketingUseCases was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceMarketingUseCasesController.deleteById"
      }
    },
    "/alhs/alace/marketing-use-cases": {
      "post": {
        "x-controller-name": "alhsalaceMarketingUseCasesController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceMarketingUseCasesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceMarketingUseCases instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingUseCases"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewMarketingUseCases"
              }
            }
          }
        },
        "operationId": "alhsalaceMarketingUseCasesController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceMarketingUseCasesController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalaceMarketingUseCasesController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalaceMarketingUseCases models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceMarketingUseCases.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceMarketingUseCases>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceMarketingUseCasesPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceMarketingUseCasesController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalaceMarketingUseCasesController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceMarketingUseCasesController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceMarketingUseCases instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceMarketingUseCasesWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingUseCases.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceMarketingUseCasesController.find"
      }
    },
    "/alhs/alace/mcp/messages": {
      "post": {
        "x-controller-name": "alhsalaceMcpController",
        "x-operation-name": "handleMcpMessages",
        "tags": [
          "alhsalaceMcpController"
        ],
        "x-mcp-controller": true,
        "responses": {
          "200": {
            "description": "Return value of alhsalaceMcpController.handlealhsalaceMcpMessages"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "alhsalaceMcpController.handlealhsalaceMcpMessages"
      }
    },
    "/alhs/alace/mcp/sse": {
      "post": {
        "x-controller-name": "alhsalaceMcpController",
        "x-operation-name": "handleMcpSsePost",
        "tags": [
          "alhsalaceMcpController"
        ],
        "x-mcp-controller": true,
        "responses": {
          "200": {
            "description": "Return value of alhsalaceMcpController.handlealhsalaceMcpSsePost"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "alhsalaceMcpController.handlealhsalaceMcpSsePost"
      },
      "get": {
        "x-controller-name": "alhsalaceMcpController",
        "x-operation-name": "mcpSse",
        "tags": [
          "alhsalaceMcpController"
        ],
        "x-mcp-controller": true,
        "responses": {
          "200": {
            "description": "Return value of alhsalaceMcpController.mcpSse"
          }
        },
        "operationId": "alhsalaceMcpController.mcpSse"
      }
    },
    "/alhs/alace/mcp": {
      "post": {
        "x-controller-name": "alhsalaceMcpController",
        "x-operation-name": "handleMcpLegacy",
        "tags": [
          "alhsalaceMcpController"
        ],
        "x-mcp-controller": true,
        "responses": {
          "200": {
            "description": "MCP Streamable HTTP + Legacy Synchronous Endpoint",
            "content": {
              "text/event-stream": {
                "schema": {
                  "type": "string"
                }
              },
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "alhsalaceMcpController.handlealhsalaceMcpLegacy"
      }
    },
    "/alhs/alace/mcp-partnercentral": {
      "post": {
        "x-controller-name": "alhsalaceAWSPartnerCentralMcpController",
        "x-operation-name": "proxyMcp",
        "tags": [
          "alhsalaceAWSPartnerCentralMcpController"
        ],
        "responses": {
          "200": {
            "description": "Proxy MCP request to AWS Partner Central Agent MCP Server using SigV4",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "additionalProperties": true
              }
            }
          },
          "description": "MCP JSON-RPC Payload",
          "required": true
        },
        "operationId": "alhsalaceAWSPartnerCentralMcpController.proxyalhsalaceMcp"
      }
    },
    "/alhs/alace/opportunities/count": {
      "get": {
        "x-controller-name": "alhsalaceOpportunitiesController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceOpportunitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunities count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceOpportunities.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceOpportunities.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceOpportunities>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceOpportunitiesController.count"
      }
    },
    "/alhs/alace/opportunities/{id}/addresses": {
      "get": {
        "x-controller-name": "alhsalaceOpportunitiesAddressesController",
        "x-operation-name": "getAddresses",
        "tags": [
          "alhsalaceOpportunitiesAddressesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceAddresses belonging to alhsalaceOpportunities",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceAddresses"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceOpportunitiesAddressesController.getalhsalaceAddresses"
      }
    },
    "/alhs/alace/opportunities/{id}/customers": {
      "get": {
        "x-controller-name": "alhsalaceOpportunitiesCustomersController",
        "x-operation-name": "getCustomers",
        "tags": [
          "alhsalaceOpportunitiesCustomersController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceCustomers belonging to alhsalaceOpportunities",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceCustomers"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceOpportunitiesCustomersController.getalhsalaceCustomers"
      }
    },
    "/alhs/alace/opportunities/{id}/marketing-activities": {
      "post": {
        "x-controller-name": "alhsalaceOpportunitiesMarketingActivitiesController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceOpportunitiesMarketingActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunities model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingActivities"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewMarketingActivitiesInOpportunities"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceOpportunitiesMarketingActivitiesController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceOpportunitiesMarketingActivitiesController",
        "x-operation-name": "patch",
        "tags": [
          "alhsalaceOpportunitiesMarketingActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunities.alhsalaceMarketingActivities PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceMarketingActivities.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceMarketingActivities>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceMarketingActivitiesPartial"
              }
            }
          },
          "x-parameter-index": 2
        },
        "operationId": "alhsalaceOpportunitiesMarketingActivitiesController.patch"
      },
      "get": {
        "x-controller-name": "alhsalaceOpportunitiesMarketingActivitiesController",
        "x-operation-name": "get",
        "tags": [
          "alhsalaceOpportunitiesMarketingActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunities has one alhsalaceMarketingActivities",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceMarketingActivities"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceOpportunitiesMarketingActivitiesController.get"
      },
      "delete": {
        "x-controller-name": "alhsalaceOpportunitiesMarketingActivitiesController",
        "x-operation-name": "delete",
        "tags": [
          "alhsalaceOpportunitiesMarketingActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunities.alhsalaceMarketingActivities DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceMarketingActivities.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceMarketingActivities>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceOpportunitiesMarketingActivitiesController.delete"
      }
    },
    "/alhs/alace/opportunities/{id}/opportunity-teams": {
      "post": {
        "x-controller-name": "alhsalaceOpportunitiesOpportunityTeamsController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceOpportunitiesOpportunityTeamsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunities model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceOpportunityTeams"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewOpportunityTeamsInOpportunities"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceOpportunitiesOpportunityTeamsController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceOpportunitiesOpportunityTeamsController",
        "x-operation-name": "patch",
        "tags": [
          "alhsalaceOpportunitiesOpportunityTeamsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunities.alhsalaceOpportunityTeams PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceOpportunityTeams.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceOpportunityTeams>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceOpportunityTeamsPartial"
              }
            }
          },
          "x-parameter-index": 2
        },
        "operationId": "alhsalaceOpportunitiesOpportunityTeamsController.patch"
      },
      "get": {
        "x-controller-name": "alhsalaceOpportunitiesOpportunityTeamsController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceOpportunitiesOpportunityTeamsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceOpportunities has many alhsalaceOpportunityTeams",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceOpportunityTeams"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceOpportunitiesOpportunityTeamsController.find"
      },
      "delete": {
        "x-controller-name": "alhsalaceOpportunitiesOpportunityTeamsController",
        "x-operation-name": "delete",
        "tags": [
          "alhsalaceOpportunitiesOpportunityTeamsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunities.alhsalaceOpportunityTeams DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceOpportunityTeams.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceOpportunityTeams>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceOpportunitiesOpportunityTeamsController.delete"
      }
    },
    "/alhs/alace/opportunities/{id}/primary-needs-from-aws": {
      "post": {
        "x-controller-name": "alhsalaceOpportunitiesPrimaryNeedsFromAwsController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceOpportunitiesPrimaryNeedsFromAwsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunities model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalacePrimaryNeedsFromAws"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewPrimaryNeedsFromAwsInOpportunities"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceOpportunitiesPrimaryNeedsFromAwsController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceOpportunitiesPrimaryNeedsFromAwsController",
        "x-operation-name": "patch",
        "tags": [
          "alhsalaceOpportunitiesPrimaryNeedsFromAwsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunities.alhsalacePrimaryNeedsFromAws PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalacePrimaryNeedsFromAws.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalacePrimaryNeedsFromAws>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalacePrimaryNeedsFromAwsPartial"
              }
            }
          },
          "x-parameter-index": 2
        },
        "operationId": "alhsalaceOpportunitiesPrimaryNeedsFromAwsController.patch"
      },
      "get": {
        "x-controller-name": "alhsalaceOpportunitiesPrimaryNeedsFromAwsController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceOpportunitiesPrimaryNeedsFromAwsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceOpportunities has many alhsalacePrimaryNeedsFromAws",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalacePrimaryNeedsFromAws"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceOpportunitiesPrimaryNeedsFromAwsController.find"
      },
      "delete": {
        "x-controller-name": "alhsalaceOpportunitiesPrimaryNeedsFromAwsController",
        "x-operation-name": "delete",
        "tags": [
          "alhsalaceOpportunitiesPrimaryNeedsFromAwsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunities.alhsalacePrimaryNeedsFromAws DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalacePrimaryNeedsFromAws.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalacePrimaryNeedsFromAws>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceOpportunitiesPrimaryNeedsFromAwsController.delete"
      }
    },
    "/alhs/alace/opportunities/{id}/project-details": {
      "get": {
        "x-controller-name": "alhsalaceOpportunitiesProjectDetailsController",
        "x-operation-name": "getProjectDetails",
        "tags": [
          "alhsalaceOpportunitiesProjectDetailsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectDetails belonging to alhsalaceOpportunities",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceProjectDetails"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceOpportunitiesProjectDetailsController.getalhsalaceProjectDetails"
      }
    },
    "/alhs/alace/opportunities/{id}": {
      "put": {
        "x-controller-name": "alhsalaceOpportunitiesController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalaceOpportunitiesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceOpportunities was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceOpportunities"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceOpportunitiesController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalaceOpportunitiesController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalaceOpportunitiesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceOpportunities was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceOpportunitiesPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceOpportunitiesController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalaceOpportunitiesController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceOpportunitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunities instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceOpportunitiesWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceOpportunities.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceOpportunitiesController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalaceOpportunitiesController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalaceOpportunitiesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceOpportunities was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceOpportunitiesController.deleteById"
      }
    },
    "/alhs/alace/opportunities": {
      "post": {
        "x-controller-name": "alhsalaceOpportunitiesController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceOpportunitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunities instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceOpportunities"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewOpportunities"
              }
            }
          }
        },
        "operationId": "alhsalaceOpportunitiesController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceOpportunitiesController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalaceOpportunitiesController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalaceOpportunities models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceOpportunities.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceOpportunities>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceOpportunitiesPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceOpportunitiesController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalaceOpportunitiesController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceOpportunitiesController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceOpportunities instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceOpportunitiesWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceOpportunities.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceOpportunitiesController.find"
      }
    },
    "/alhs/alace/opportunity-teams/count": {
      "get": {
        "x-controller-name": "alhsalaceOpportunityTeamsController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceOpportunityTeamsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunityTeams count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceOpportunityTeams.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceOpportunityTeams.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceOpportunityTeams>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceOpportunityTeamsController.count"
      }
    },
    "/alhs/alace/opportunity-teams/{id}": {
      "put": {
        "x-controller-name": "alhsalaceOpportunityTeamsController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalaceOpportunityTeamsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceOpportunityTeams was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceOpportunityTeams"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceOpportunityTeamsController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalaceOpportunityTeamsController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalaceOpportunityTeamsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceOpportunityTeams was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceOpportunityTeamsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceOpportunityTeamsController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalaceOpportunityTeamsController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceOpportunityTeamsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunityTeams instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceOpportunityTeamsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceOpportunityTeams.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceOpportunityTeamsController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalaceOpportunityTeamsController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalaceOpportunityTeamsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceOpportunityTeams was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceOpportunityTeamsController.deleteById"
      }
    },
    "/alhs/alace/opportunity-teams": {
      "post": {
        "x-controller-name": "alhsalaceOpportunityTeamsController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceOpportunityTeamsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceOpportunityTeams instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceOpportunityTeams"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewOpportunityTeams"
              }
            }
          }
        },
        "operationId": "alhsalaceOpportunityTeamsController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceOpportunityTeamsController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalaceOpportunityTeamsController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalaceOpportunityTeams models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceOpportunityTeams.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceOpportunityTeams>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceOpportunityTeamsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceOpportunityTeamsController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalaceOpportunityTeamsController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceOpportunityTeamsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceOpportunityTeams instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceOpportunityTeamsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceOpportunityTeams.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceOpportunityTeamsController.find"
      }
    },
    "/alhs/alace/ping": {
      "get": {
        "x-controller-name": "alhsalacePingController",
        "x-operation-name": "ping",
        "tags": [
          "alhsalacePingController"
        ],
        "responses": {
          "200": {
            "description": "alhsalacePing Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalacePingResponse"
                }
              }
            }
          }
        },
        "operationId": "alhsalacePingController.ping"
      }
    },
    "/alhs/alace/ping2": {
      "get": {
        "x-controller-name": "alhsalacePing2Controller",
        "x-operation-name": "ping2",
        "tags": [
          "alhsalacePing2Controller"
        ],
        "responses": {
          "200": {
            "description": "alhsalacePing2 Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalacePing2Response"
                }
              }
            }
          }
        },
        "operationId": "alhsalacePing2Controller.ping2"
      }
    },
    "/alhs/alace/primary-needs-from-aws/count": {
      "get": {
        "x-controller-name": "alhsalacePrimaryNeedsFromAwsController",
        "x-operation-name": "count",
        "tags": [
          "alhsalacePrimaryNeedsFromAwsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalacePrimaryNeedsFromAws count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalacePrimaryNeedsFromAws.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalacePrimaryNeedsFromAws.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalacePrimaryNeedsFromAws>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalacePrimaryNeedsFromAwsController.count"
      }
    },
    "/alhs/alace/primary-needs-from-aws/{id}": {
      "put": {
        "x-controller-name": "alhsalacePrimaryNeedsFromAwsController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalacePrimaryNeedsFromAwsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalacePrimaryNeedsFromAws was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalacePrimaryNeedsFromAws"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalacePrimaryNeedsFromAwsController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalacePrimaryNeedsFromAwsController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalacePrimaryNeedsFromAwsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalacePrimaryNeedsFromAws was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalacePrimaryNeedsFromAwsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalacePrimaryNeedsFromAwsController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalacePrimaryNeedsFromAwsController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalacePrimaryNeedsFromAwsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalacePrimaryNeedsFromAws instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalacePrimaryNeedsFromAwsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalacePrimaryNeedsFromAws.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalacePrimaryNeedsFromAwsController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalacePrimaryNeedsFromAwsController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalacePrimaryNeedsFromAwsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalacePrimaryNeedsFromAws was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalacePrimaryNeedsFromAwsController.deleteById"
      }
    },
    "/alhs/alace/primary-needs-from-aws": {
      "post": {
        "x-controller-name": "alhsalacePrimaryNeedsFromAwsController",
        "x-operation-name": "create",
        "tags": [
          "alhsalacePrimaryNeedsFromAwsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalacePrimaryNeedsFromAws instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalacePrimaryNeedsFromAws"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewPrimaryNeedsFromAws"
              }
            }
          }
        },
        "operationId": "alhsalacePrimaryNeedsFromAwsController.create"
      },
      "patch": {
        "x-controller-name": "alhsalacePrimaryNeedsFromAwsController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalacePrimaryNeedsFromAwsController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalacePrimaryNeedsFromAws models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalacePrimaryNeedsFromAws.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalacePrimaryNeedsFromAws>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalacePrimaryNeedsFromAwsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalacePrimaryNeedsFromAwsController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalacePrimaryNeedsFromAwsController",
        "x-operation-name": "find",
        "tags": [
          "alhsalacePrimaryNeedsFromAwsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalacePrimaryNeedsFromAws instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalacePrimaryNeedsFromAwsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalacePrimaryNeedsFromAws.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalacePrimaryNeedsFromAwsController.find"
      }
    },
    "/alhs/alace/project-details/count": {
      "get": {
        "x-controller-name": "alhsalaceProjectDetailsController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceProjectDetailsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectDetails count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceProjectDetails.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceProjectDetails.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceProjectDetails>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceProjectDetailsController.count"
      }
    },
    "/alhs/alace/project-details/{id}/delivery-models": {
      "post": {
        "x-controller-name": "alhsalaceProjectDetailsDeliveryModelsController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceProjectDetailsDeliveryModelsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectDetails model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceDeliveryModels"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewDeliveryModelsInProjectDetails"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceProjectDetailsDeliveryModelsController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceProjectDetailsDeliveryModelsController",
        "x-operation-name": "patch",
        "tags": [
          "alhsalaceProjectDetailsDeliveryModelsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectDetails.alhsalaceDeliveryModels PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceDeliveryModels.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceDeliveryModels>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceDeliveryModelsPartial"
              }
            }
          },
          "x-parameter-index": 2
        },
        "operationId": "alhsalaceProjectDetailsDeliveryModelsController.patch"
      },
      "get": {
        "x-controller-name": "alhsalaceProjectDetailsDeliveryModelsController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceProjectDetailsDeliveryModelsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceProjectDetails has many alhsalaceDeliveryModels",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceDeliveryModels"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceProjectDetailsDeliveryModelsController.find"
      },
      "delete": {
        "x-controller-name": "alhsalaceProjectDetailsDeliveryModelsController",
        "x-operation-name": "delete",
        "tags": [
          "alhsalaceProjectDetailsDeliveryModelsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectDetails.alhsalaceDeliveryModels DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceDeliveryModels.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceDeliveryModels>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceProjectDetailsDeliveryModelsController.delete"
      }
    },
    "/alhs/alace/project-details/{id}/project-sales-activities": {
      "post": {
        "x-controller-name": "alhsalaceProjectDetailsProjectSalesActivitiesController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceProjectDetailsProjectSalesActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectDetails model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceProjectSalesActivities"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewProjectSalesActivitiesInProjectDetails"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceProjectDetailsProjectSalesActivitiesController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceProjectDetailsProjectSalesActivitiesController",
        "x-operation-name": "patch",
        "tags": [
          "alhsalaceProjectDetailsProjectSalesActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectDetails.alhsalaceProjectSalesActivities PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceProjectSalesActivities.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceProjectSalesActivities>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceProjectSalesActivitiesPartial"
              }
            }
          },
          "x-parameter-index": 2
        },
        "operationId": "alhsalaceProjectDetailsProjectSalesActivitiesController.patch"
      },
      "get": {
        "x-controller-name": "alhsalaceProjectDetailsProjectSalesActivitiesController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceProjectDetailsProjectSalesActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceProjectDetails has many alhsalaceProjectSalesActivities",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceProjectSalesActivities"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceProjectDetailsProjectSalesActivitiesController.find"
      },
      "delete": {
        "x-controller-name": "alhsalaceProjectDetailsProjectSalesActivitiesController",
        "x-operation-name": "delete",
        "tags": [
          "alhsalaceProjectDetailsProjectSalesActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectDetails.alhsalaceProjectSalesActivities DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceProjectSalesActivities.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceProjectSalesActivities>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceProjectDetailsProjectSalesActivitiesController.delete"
      }
    },
    "/alhs/alace/project-details/{id}/solutions-offereds": {
      "post": {
        "x-controller-name": "alhsalaceProjectDetailsSolutionsOfferedController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceProjectDetailsSolutionsOfferedController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectDetails model instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceSolutionsOffered"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewSolutionsOfferedInProjectDetails"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceProjectDetailsSolutionsOfferedController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceProjectDetailsSolutionsOfferedController",
        "x-operation-name": "patch",
        "tags": [
          "alhsalaceProjectDetailsSolutionsOfferedController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectDetails.alhsalaceSolutionsOffered PATCH success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceSolutionsOffered.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceSolutionsOffered>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceSolutionsOfferedPartial"
              }
            }
          },
          "x-parameter-index": 2
        },
        "operationId": "alhsalaceProjectDetailsSolutionsOfferedController.patch"
      },
      "get": {
        "x-controller-name": "alhsalaceProjectDetailsSolutionsOfferedController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceProjectDetailsSolutionsOfferedController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceProjectDetails has many alhsalaceSolutionsOffered",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceSolutionsOffered"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "additionalProperties": true
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceProjectDetailsSolutionsOfferedController.find"
      },
      "delete": {
        "x-controller-name": "alhsalaceProjectDetailsSolutionsOfferedController",
        "x-operation-name": "delete",
        "tags": [
          "alhsalaceProjectDetailsSolutionsOfferedController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectDetails.alhsalaceSolutionsOffered DELETE success count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceSolutionsOffered.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceSolutionsOffered>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceProjectDetailsSolutionsOfferedController.delete"
      }
    },
    "/alhs/alace/project-details/{id}": {
      "put": {
        "x-controller-name": "alhsalaceProjectDetailsController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalaceProjectDetailsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceProjectDetails was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceProjectDetails"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceProjectDetailsController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalaceProjectDetailsController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalaceProjectDetailsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceProjectDetails was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceProjectDetailsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceProjectDetailsController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalaceProjectDetailsController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceProjectDetailsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectDetails instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceProjectDetailsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceProjectDetails.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceProjectDetailsController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalaceProjectDetailsController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalaceProjectDetailsController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceProjectDetails was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceProjectDetailsController.deleteById"
      }
    },
    "/alhs/alace/project-details": {
      "post": {
        "x-controller-name": "alhsalaceProjectDetailsController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceProjectDetailsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectDetails instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceProjectDetails"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewProjectDetails"
              }
            }
          }
        },
        "operationId": "alhsalaceProjectDetailsController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceProjectDetailsController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalaceProjectDetailsController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalaceProjectDetails models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceProjectDetails.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceProjectDetails>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceProjectDetailsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceProjectDetailsController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalaceProjectDetailsController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceProjectDetailsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceProjectDetails instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceProjectDetailsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceProjectDetails.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceProjectDetailsController.find"
      }
    },
    "/alhs/alace/project-sales-activities/count": {
      "get": {
        "x-controller-name": "alhsalaceProjectSalesActivitiesController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceProjectSalesActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectSalesActivities count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceProjectSalesActivities.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceProjectSalesActivities.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceProjectSalesActivities>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceProjectSalesActivitiesController.count"
      }
    },
    "/alhs/alace/project-sales-activities/{id}": {
      "put": {
        "x-controller-name": "alhsalaceProjectSalesActivitiesController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalaceProjectSalesActivitiesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceProjectSalesActivities was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceProjectSalesActivities"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceProjectSalesActivitiesController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalaceProjectSalesActivitiesController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalaceProjectSalesActivitiesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceProjectSalesActivities was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceProjectSalesActivitiesPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceProjectSalesActivitiesController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalaceProjectSalesActivitiesController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceProjectSalesActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectSalesActivities instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceProjectSalesActivitiesWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceProjectSalesActivities.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceProjectSalesActivitiesController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalaceProjectSalesActivitiesController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalaceProjectSalesActivitiesController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceProjectSalesActivities was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceProjectSalesActivitiesController.deleteById"
      }
    },
    "/alhs/alace/project-sales-activities": {
      "post": {
        "x-controller-name": "alhsalaceProjectSalesActivitiesController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceProjectSalesActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceProjectSalesActivities instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceProjectSalesActivities"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewProjectSalesActivities"
              }
            }
          }
        },
        "operationId": "alhsalaceProjectSalesActivitiesController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceProjectSalesActivitiesController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalaceProjectSalesActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalaceProjectSalesActivities models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceProjectSalesActivities.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceProjectSalesActivities>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceProjectSalesActivitiesPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceProjectSalesActivitiesController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalaceProjectSalesActivitiesController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceProjectSalesActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceProjectSalesActivities instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceProjectSalesActivitiesWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceProjectSalesActivities.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceProjectSalesActivitiesController.find"
      }
    },
    "/alhs/alace/solutions-offereds/count": {
      "get": {
        "x-controller-name": "alhsalaceSolutionsOfferedController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceSolutionsOfferedController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceSolutionsOffered count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceSolutionsOffered.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceSolutionsOffered.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceSolutionsOffered>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceSolutionsOfferedController.count"
      }
    },
    "/alhs/alace/solutions-offereds/{id}": {
      "put": {
        "x-controller-name": "alhsalaceSolutionsOfferedController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhsalaceSolutionsOfferedController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceSolutionsOffered was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceSolutionsOffered"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceSolutionsOfferedController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhsalaceSolutionsOfferedController",
        "x-operation-name": "updateById",
        "tags": [
          "alhsalaceSolutionsOfferedController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceSolutionsOffered was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceSolutionsOfferedPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceSolutionsOfferedController.updateById"
      },
      "get": {
        "x-controller-name": "alhsalaceSolutionsOfferedController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceSolutionsOfferedController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceSolutionsOffered instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceSolutionsOfferedWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceSolutionsOffered.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceSolutionsOfferedController.findById"
      },
      "delete": {
        "x-controller-name": "alhsalaceSolutionsOfferedController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhsalaceSolutionsOfferedController"
        ],
        "responses": {
          "204": {
            "description": "alhsalaceSolutionsOffered was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceSolutionsOfferedController.deleteById"
      }
    },
    "/alhs/alace/solutions-offereds": {
      "post": {
        "x-controller-name": "alhsalaceSolutionsOfferedController",
        "x-operation-name": "create",
        "tags": [
          "alhsalaceSolutionsOfferedController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceSolutionsOffered instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceSolutionsOffered"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceNewSolutionsOffered"
              }
            }
          }
        },
        "operationId": "alhsalaceSolutionsOfferedController.create"
      },
      "patch": {
        "x-controller-name": "alhsalaceSolutionsOfferedController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhsalaceSolutionsOfferedController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhsalaceSolutionsOffered models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceSolutionsOffered.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceSolutionsOffered>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhsalaceSolutionsOfferedPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceSolutionsOfferedController.updateAll"
      },
      "get": {
        "x-controller-name": "alhsalaceSolutionsOfferedController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceSolutionsOfferedController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceSolutionsOffered instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceSolutionsOfferedWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceSolutionsOffered.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceSolutionsOfferedController.find"
      }
    },
    "/alhs/alace/sync/activity-feed": {
      "get": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "getSyncActivityFeed",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.getSyncActivityFeed"
          }
        },
        "operationId": "alhsalaceAWSSyncController.getSyncActivityFeed"
      }
    },
    "/alhs/alace/sync/countries": {
      "get": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "getCountries",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.getCountries"
          }
        },
        "operationId": "alhsalaceAWSSyncController.getCountries"
      }
    },
    "/alhs/alace/sync/from-aws/{awsOppId}": {
      "post": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "syncOppFromAwsById",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.syncOppFromAwsById"
          }
        },
        "parameters": [
          {
            "name": "awsOppId",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceAWSSyncController.syncOppFromAwsById"
      }
    },
    "/alhs/alace/sync/from-aws": {
      "get": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "getOppsFromAws",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.getOppsFromAws"
          }
        },
        "operationId": "alhsalaceAWSSyncController.getOppsFromAws"
      }
    },
    "/alhs/alace/sync/opportunities/cleanup": {
      "post": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "cleanupOpportunities",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.cleanupalhsalaceOpportunities"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "stage": {
                    "type": "string",
                    "enum": [
                      "Closed Lost",
                      "Launched"
                    ]
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsalaceAWSSyncController.cleanupalhsalaceOpportunities"
      }
    },
    "/alhs/alace/sync/opportunities/close": {
      "post": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "bulkClose",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.bulkClose"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "ids": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsalaceAWSSyncController.bulkClose"
      }
    },
    "/alhs/alace/sync/opportunities/delete-aws": {
      "post": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "deleteByAwsId",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.deleteByAwsId"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "awsOppIds": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "stage": {
                    "type": "string"
                  },
                  "stageOnly": {
                    "type": "boolean"
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsalaceAWSSyncController.deleteByAwsId"
      }
    },
    "/alhs/alace/sync/opportunities/delete-wr": {
      "post": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "deleteWr",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.deleteWR"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "ids": {
                    "type": "array",
                    "items": {
                      "type": "number"
                    }
                  },
                  "stage": {
                    "type": "string",
                    "enum": [
                      "Closed Lost",
                      "Launched"
                    ]
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsalaceAWSSyncController.deleteWR"
      }
    },
    "/alhs/alace/sync/opportunities-detailed": {
      "get": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "getOpportunitiesDetailed",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.getalhsalaceOpportunitiesDetailed"
          }
        },
        "operationId": "alhsalaceAWSSyncController.getalhsalaceOpportunitiesDetailed"
      }
    },
    "/alhs/alace/sync/opportunity/local/{id}": {
      "get": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "getLocalOppById",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Local opportunity payload mapped from local DB by id",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "payload": {
                      "type": "object"
                    },
                    "response": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceAWSSyncController.getLocalOppById"
      }
    },
    "/alhs/alace/sync/opportunity/{id}": {
      "post": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "syncOneById",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Sync one opportunity by its local DB id",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "awsOppId": {
                      "type": "string"
                    },
                    "opportunityId": {
                      "type": "number"
                    },
                    "response": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceAWSSyncController.syncOneById"
      }
    },
    "/alhs/alace/sync/opportunity/{awsOppId}": {
      "get": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "getLocalOppByAwsId",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Local opportunity payload mapped from AWS",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "payload": {
                      "type": "object"
                    },
                    "response": {
                      "type": "object"
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "awsOppId",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceAWSSyncController.getLocalOppByAwsId"
      }
    },
    "/alhs/alace/sync/opportunity": {
      "post": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "syncOne",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.syncOne"
          }
        },
        "parameters": [
          {
            "name": "opportunityId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "properties": {
                  "opportunityType": {
                    "type": "string"
                  },
                  "parentOppId": {
                    "type": "string"
                  },
                  "partnerCrmUniqueId": {
                    "type": "string"
                  },
                  "syncToAws": {
                    "type": "string"
                  },
                  "partnerPrimaryNeedFromAws": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "customerCompanyName": {
                    "type": "string"
                  },
                  "customerDuns": {
                    "type": "string"
                  },
                  "industryVertical": {
                    "type": "string"
                  },
                  "industryOther": {
                    "type": "string"
                  },
                  "website": {
                    "type": "string"
                  },
                  "awsAccountId": {
                    "type": "string"
                  },
                  "streetAddress": {
                    "type": "string"
                  },
                  "city": {
                    "type": "string"
                  },
                  "state": {
                    "type": "string"
                  },
                  "country": {
                    "type": "string"
                  },
                  "postalCode": {
                    "type": "string"
                  },
                  "customeralhsalaceContacts": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "businessTitle": {
                          "type": "string"
                        },
                        "email": {
                          "type": "string"
                        },
                        "firstName": {
                          "type": "string"
                        },
                        "lastName": {
                          "type": "string"
                        },
                        "phone": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "targetCloseDate": {
                    "type": "string"
                  },
                  "awsStage": {
                    "type": "string"
                  },
                  "reviewStatus": {
                    "type": "string"
                  },
                  "closedLostReason": {
                    "type": "string"
                  },
                  "nextSteps": {
                    "type": "string"
                  },
                  "nextStepsHistory": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "Time": {
                          "type": "string"
                        },
                        "Value": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "opportunityTeam": {
                    "type": "array",
                    "items": {
                      "type": "object",
                      "properties": {
                        "businessTitle": {
                          "type": "string"
                        },
                        "email": {
                          "type": "string"
                        },
                        "firstName": {
                          "type": "string"
                        },
                        "lastName": {
                          "type": "string"
                        },
                        "phone": {
                          "type": "string"
                        }
                      }
                    }
                  },
                  "awsProducts": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "estimatedAwsMonthlyReccuringRevenue": {
                    "type": "number"
                  },
                  "partnerProjectTitle": {
                    "type": "string"
                  },
                  "customerBusinessProblem": {
                    "type": "string"
                  },
                  "otherSolOffered": {
                    "type": "string"
                  },
                  "useCase": {
                    "type": "string"
                  },
                  "deliveryModel": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "salesActivities": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "competitiveTracking": {
                    "type": "string"
                  },
                  "otherCompetitors": {
                    "type": "string"
                  },
                  "apnPrograms": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "additionalComments": {
                    "type": "string"
                  },
                  "awsFundingUsed": {
                    "type": "string"
                  },
                  "marketingCampaign": {
                    "type": "string"
                  },
                  "marketingActivityChannel": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "marketingSource": {
                    "type": "string"
                  },
                  "marketingActivityUseCase": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  },
                  "doesOppBelongToNatSec": {
                    "type": "string"
                  },
                  "solutionOffered": {
                    "type": "array",
                    "items": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "description": "Local opportunity payload to sync",
          "required": true,
          "x-parameter-index": 1
        },
        "operationId": "alhsalaceAWSSyncController.syncOne"
      }
    },
    "/alhs/alace/sync/options": {
      "get": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "getOptions",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Dropdown options for Opportunity form",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "opportunityType": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "industryVertical": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "primaryNeedsFromAws": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "deliveryModel": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "salesActivities": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "competitorName": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "apnPrograms": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "marketingChannel": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "marketingSource": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "marketingUseCase": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "nationalSecurityFlag": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "stages": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "name": {
                            "type": "string"
                          },
                          "isDefault": {
                            "type": "boolean"
                          }
                        }
                      }
                    },
                    "closedLostReason": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    },
                    "reviewStatus": {
                      "type": "array",
                      "items": {
                        "type": "string"
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsalaceAWSSyncController.getOptions"
      }
    },
    "/alhs/alace/sync/postal-code-rules": {
      "get": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "getPostalCodeRules",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.getPostalCodeRules"
          }
        },
        "operationId": "alhsalaceAWSSyncController.getPostalCodeRules"
      }
    },
    "/alhs/alace/sync/status-overview": {
      "get": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "getSyncStatusOverview",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.getSyncStatusOverview"
          }
        },
        "operationId": "alhsalaceAWSSyncController.getSyncStatusOverview"
      }
    },
    "/alhs/alace/sync/to-aws": {
      "get": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "syncOppstoAws",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.syncOppstoAws"
          }
        },
        "operationId": "alhsalaceAWSSyncController.syncOppstoAws"
      }
    },
    "/alhs/alace/sync/us-states": {
      "get": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "getUsStates",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.getUsStates"
          }
        },
        "operationId": "alhsalaceAWSSyncController.getUsStates"
      }
    },
    "/alhs/alace/sync/use-cases": {
      "get": {
        "x-controller-name": "alhsalaceAWSSyncController",
        "x-operation-name": "getUseCases",
        "tags": [
          "alhsalaceAWSSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsalaceAWSSyncController.getUseCases"
          }
        },
        "operationId": "alhsalaceAWSSyncController.getUseCases"
      }
    },
    "/alhs/alace/sync-events/count": {
      "get": {
        "x-controller-name": "alhsalaceSyncEventsController",
        "x-operation-name": "count",
        "tags": [
          "alhsalaceSyncEventsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceSyncEvents count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceSyncEvents.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhsalaceSyncEvents.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhsalaceSyncEvents>"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceSyncEventsController.count"
      }
    },
    "/alhs/alace/sync-events/{id}": {
      "get": {
        "x-controller-name": "alhsalaceSyncEventsController",
        "x-operation-name": "findById",
        "tags": [
          "alhsalaceSyncEventsController"
        ],
        "responses": {
          "200": {
            "description": "alhsalaceSyncEvents instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceSyncEventsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceSyncEvents.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceSyncEventsController.findById"
      }
    },
    "/alhs/alace/sync-events": {
      "get": {
        "x-controller-name": "alhsalaceSyncEventsController",
        "x-operation-name": "find",
        "tags": [
          "alhsalaceSyncEventsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhsalaceSyncEvents instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhsalaceSyncEventsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsalaceSyncEvents.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhsalaceSyncEventsController.find"
      }
    },
    "/alhs/alace/sync-statistics/day/{year}/{month}/{day}": {
      "get": {
        "x-controller-name": "alhsalaceSyncStatisticsController",
        "x-operation-name": "getStatisticsByDay",
        "tags": [
          "alhsalaceSyncStatisticsController"
        ],
        "responses": {
          "200": {
            "description": "Sync Statistics Response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "period": {
                      "type": "string"
                    },
                    "periodType": {
                      "type": "string"
                    },
                    "totalalhsalaceOpportunities": {
                      "type": "number"
                    },
                    "newalhsalaceOpportunitiesCreated": {
                      "type": "number"
                    },
                    "changedalhsalaceOpportunitiesUnique": {
                      "type": "number"
                    },
                    "changedalhsalaceOpportunitiesTotalUpdates": {
                      "type": "number"
                    },
                    "successfulSyncs": {
                      "type": "number"
                    },
                    "failedSyncs": {
                      "type": "number"
                    },
                    "fromAwsSyncs": {
                      "type": "number"
                    },
                    "toAwsSyncs": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "month",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "day",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceSyncStatisticsController.getStatisticsByDay"
      }
    },
    "/alhs/alace/sync-statistics/month/{year}/{month}": {
      "get": {
        "x-controller-name": "alhsalaceSyncStatisticsController",
        "x-operation-name": "getStatisticsByMonth",
        "tags": [
          "alhsalaceSyncStatisticsController"
        ],
        "responses": {
          "200": {
            "description": "Sync Statistics Response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "period": {
                      "type": "string"
                    },
                    "periodType": {
                      "type": "string"
                    },
                    "totalalhsalaceOpportunities": {
                      "type": "number"
                    },
                    "newalhsalaceOpportunitiesCreated": {
                      "type": "number"
                    },
                    "changedalhsalaceOpportunitiesUnique": {
                      "type": "number"
                    },
                    "changedalhsalaceOpportunitiesTotalUpdates": {
                      "type": "number"
                    },
                    "successfulSyncs": {
                      "type": "number"
                    },
                    "failedSyncs": {
                      "type": "number"
                    },
                    "fromAwsSyncs": {
                      "type": "number"
                    },
                    "toAwsSyncs": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          },
          {
            "name": "month",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceSyncStatisticsController.getStatisticsByMonth"
      }
    },
    "/alhs/alace/sync-statistics/range": {
      "get": {
        "x-controller-name": "alhsalaceSyncStatisticsController",
        "x-operation-name": "getStatisticsRange",
        "tags": [
          "alhsalaceSyncStatisticsController"
        ],
        "responses": {
          "200": {
            "description": "Array of Sync Statistics",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "period": {
                        "type": "string"
                      },
                      "periodType": {
                        "type": "string"
                      },
                      "totalalhsalaceOpportunities": {
                        "type": "number"
                      },
                      "newalhsalaceOpportunitiesCreated": {
                        "type": "number"
                      },
                      "changedalhsalaceOpportunitiesUnique": {
                        "type": "number"
                      },
                      "changedalhsalaceOpportunitiesTotalUpdates": {
                        "type": "number"
                      },
                      "successfulSyncs": {
                        "type": "number"
                      },
                      "failedSyncs": {
                        "type": "number"
                      },
                      "fromAwsSyncs": {
                        "type": "number"
                      },
                      "toAwsSyncs": {
                        "type": "number"
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "startDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "endDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "groupBy",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "alhsalaceSyncStatisticsController.getStatisticsRange"
      }
    },
    "/alhs/alace/sync-statistics/year/{year}": {
      "get": {
        "x-controller-name": "alhsalaceSyncStatisticsController",
        "x-operation-name": "getStatisticsByYear",
        "tags": [
          "alhsalaceSyncStatisticsController"
        ],
        "responses": {
          "200": {
            "description": "Sync Statistics Response",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "period": {
                      "type": "string"
                    },
                    "periodType": {
                      "type": "string"
                    },
                    "totalalhsalaceOpportunities": {
                      "type": "number"
                    },
                    "newalhsalaceOpportunitiesCreated": {
                      "type": "number"
                    },
                    "changedalhsalaceOpportunitiesUnique": {
                      "type": "number"
                    },
                    "changedalhsalaceOpportunitiesTotalUpdates": {
                      "type": "number"
                    },
                    "successfulSyncs": {
                      "type": "number"
                    },
                    "failedSyncs": {
                      "type": "number"
                    },
                    "fromAwsSyncs": {
                      "type": "number"
                    },
                    "toAwsSyncs": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "year",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsalaceSyncStatisticsController.getStatisticsByYear"
      }
    },
    "/alhs/bulk-sync/config": {
      "post": {
        "x-controller-name": "alhsBulkSyncSchedulerController",
        "x-operation-name": "updateConfig",
        "tags": [
          "alhsBulkSyncSchedulerController"
        ],
        "responses": {
          "200": {
            "description": "Update bulk sync config",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "alhsBulkSyncSchedulerController.updateConfig"
      },
      "get": {
        "x-controller-name": "alhsBulkSyncSchedulerController",
        "x-operation-name": "getConfig",
        "tags": [
          "alhsBulkSyncSchedulerController"
        ],
        "responses": {
          "200": {
            "description": "Get bulk sync config",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "operationId": "alhsBulkSyncSchedulerController.getConfig"
      }
    },
    "/alhs/hubspot-auth/auth-url": {
      "get": {
        "x-controller-name": "alhsHubspotAuthController",
        "x-operation-name": "getAuthUrl",
        "tags": [
          "alhsHubspotAuthController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotAuthController.getAuthUrl"
          }
        },
        "parameters": [
          {
            "name": "appUrl",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "alhsHubspotAuthController.getAuthUrl"
      }
    },
    "/alhs/hubspot-auth/callback": {
      "get": {
        "x-controller-name": "alhsHubspotAuthController",
        "x-operation-name": "callback",
        "tags": [
          "alhsHubspotAuthController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotAuthController.callback"
          }
        },
        "parameters": [
          {
            "name": "code",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "alhsHubspotAuthController.callback"
      }
    },
    "/alhs/hubspot-auth/card-callback": {
      "get": {
        "x-controller-name": "alhsHubspotAuthController",
        "x-operation-name": "cardCallback",
        "tags": [
          "alhsHubspotAuthController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotAuthController.cardCallback"
          }
        },
        "parameters": [
          {
            "name": "code",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "state",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "alhsHubspotAuthController.cardCallback"
      }
    },
    "/alhs/hubspot-auth/delete-tokens": {
      "get": {
        "x-controller-name": "alhsHubspotAuthController",
        "x-operation-name": "deleteStoredToken",
        "tags": [
          "alhsHubspotAuthController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotAuthController.deleteStoredToken"
          }
        },
        "operationId": "alhsHubspotAuthController.deleteStoredToken"
      }
    },
    "/alhs/hubspot-auth/refresh-token": {
      "post": {
        "x-controller-name": "alhsHubspotAuthController",
        "x-operation-name": "refreshToken",
        "tags": [
          "alhsHubspotAuthController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotAuthController.refreshToken"
          }
        },
        "requestBody": {
          "content": {
            "application/x-www-form-urlencoded": {
              "schema": {
                "type": "object",
                "properties": {
                  "refreshToken": {
                    "type": "string"
                  }
                }
              }
            }
          },
          "required": false
        },
        "operationId": "alhsHubspotAuthController.refreshToken"
      }
    },
    "/alhs/hubspot-auth/setup-card/install": {
      "post": {
        "x-controller-name": "alhsHubspotAuthController",
        "x-operation-name": "setupCardAndInstall",
        "tags": [
          "alhsHubspotAuthController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotAuthController.setupCardAndInstall"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "alhsHubspotAuthController.setupCardAndInstall"
      }
    },
    "/alhs/hubspot-auth/setup-card/install-url": {
      "post": {
        "x-controller-name": "alhsHubspotAuthController",
        "x-operation-name": "getCardInstallUrl",
        "tags": [
          "alhsHubspotAuthController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotAuthController.getCardInstallUrl"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "alhsHubspotAuthController.getCardInstallUrl"
      }
    },
    "/alhs/hubspot-auth/setup-card": {
      "post": {
        "x-controller-name": "alhsHubspotAuthController",
        "x-operation-name": "setupCard",
        "tags": [
          "alhsHubspotAuthController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotAuthController.setupCard"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "alhsHubspotAuthController.setupCard"
      }
    },
    "/alhs/hubspot-auth/start": {
      "get": {
        "x-controller-name": "alhsHubspotAuthController",
        "x-operation-name": "startCardAuth",
        "tags": [
          "alhsHubspotAuthController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotAuthController.startCardAuth"
          }
        },
        "parameters": [
          {
            "name": "portalId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "publicBaseUrl",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "callbackBaseUrl",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "recordId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "alhsHubspotAuthController.startCardAuth"
      }
    },
    "/alhs/hubspot-auth/status": {
      "get": {
        "x-controller-name": "alhsHubspotAuthController",
        "x-operation-name": "getAuthStatus",
        "tags": [
          "alhsHubspotAuthController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotAuthController.getAuthStatus"
          }
        },
        "operationId": "alhsHubspotAuthController.getAuthStatus"
      }
    },
    "/alhs/hubspot-card/aws-invitations/accept": {
      "post": {
        "x-controller-name": "alhsHubspotCardInvitationsController",
        "x-operation-name": "acceptInvitation",
        "tags": [
          "alhsHubspotCardInvitationsController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Accept AWS originated opportunity invitation"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "identifier",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "clientToken",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "alhsHubspotCardInvitationsController.acceptInvitation"
      }
    },
    "/alhs/hubspot-card/aws-invitations/details": {
      "post": {
        "x-controller-name": "alhsHubspotCardInvitationsController",
        "x-operation-name": "getInvitationDetails",
        "tags": [
          "alhsHubspotCardInvitationsController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "AWS originated opportunity invitation details for HubSpot card"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "identifier",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "alhsHubspotCardInvitationsController.getInvitationDetails"
      }
    },
    "/alhs/hubspot-card/aws-invitations/import": {
      "post": {
        "x-controller-name": "alhsHubspotCardInvitationsController",
        "x-operation-name": "importAcceptedInvitation",
        "tags": [
          "alhsHubspotCardInvitationsController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Import an accepted AWS opportunity into Acelink and sync it to HubSpot"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "awsOpportunityId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "alhsHubspotCardInvitationsController.importAcceptedInvitation"
      }
    },
    "/alhs/hubspot-card/aws-invitations/reject": {
      "post": {
        "x-controller-name": "alhsHubspotCardInvitationsController",
        "x-operation-name": "rejectInvitation",
        "tags": [
          "alhsHubspotCardInvitationsController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Reject AWS originated opportunity invitation from HubSpot card"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "identifier",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "rejectionReason",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "alhsHubspotCardInvitationsController.rejectInvitation"
      }
    },
    "/alhs/hubspot-card/aws-invitations": {
      "get": {
        "x-controller-name": "alhsHubspotCardInvitationsController",
        "x-operation-name": "listInvitations",
        "tags": [
          "alhsHubspotCardInvitationsController"
        ],
        "responses": {
          "200": {
            "description": "OK",
            "content": {
              "application/json": {
                "schema": {
                  "description": "Pending AWS originated opportunity invitations for HubSpot card"
                }
              }
            }
          }
        },
        "operationId": "alhsHubspotCardInvitationsController.listInvitations"
      }
    },
    "/alhs/hubspot-sync/cleanup/by-id": {
      "post": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "deleteHubspotDeals",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Delete HubSpot deals by identifiers",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "Provide any of: opportunityIds (local), crmIds (partner_crm_unique_id_v2), awsIds (aws_opportunity_id_v2). Set dryRun=true for preview.",
          "required": true
        },
        "operationId": "alhsHubspotSyncController.deleteHubspotDeals"
      }
    },
    "/alhs/hubspot-sync/cleanup/hubspot": {
      "post": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "cleanupHubspotDeals",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Delete orphan HubSpot deals",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "Optional: dryRun=true will not delete, only report",
          "required": false
        },
        "operationId": "alhsHubspotSyncController.cleanupHubspotDeals"
      }
    },
    "/alhs/hubspot-sync/from-hubspot": {
      "post": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "syncFromHubspot",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Sync opportunities from HubSpot",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "operationId": "alhsHubspotSyncController.syncFromHubspot"
      }
    },
    "/alhs/hubspot-sync/opportunities/v2/auto-init": {
      "post": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "autoInitOpportunityFieldsV2",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotSyncController.autoInitOpportunityFieldsV2"
          }
        },
        "operationId": "alhsHubspotSyncController.autoInitOpportunityFieldsV2"
      }
    },
    "/alhs/hubspot-sync/opportunities/v2/init-properties": {
      "post": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "initOpportunityFieldsV2",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotSyncController.initOpportunityFieldsV2"
          }
        },
        "operationId": "alhsHubspotSyncController.initOpportunityFieldsV2"
      }
    },
    "/alhs/hubspot-sync/opportunity/validate": {
      "post": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "validateOpportunityPayload",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Validate a local opportunity payload without syncing to AWS or HubSpot",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "crmId": {
                      "type": "string"
                    },
                    "status": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    },
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "Local opportunity payload for validation",
          "required": true
        },
        "operationId": "alhsHubspotSyncController.validateOpportunityPayload"
      }
    },
    "/alhs/hubspot-sync/opportunity/verify": {
      "get": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "verifyHubspotOpportunityGet",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Verify a HubSpot deal against the validation rules without syncing to AWS",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "hubspotId": {
                      "type": "string"
                    },
                    "status": {
                      "type": "string"
                    },
                    "message": {
                      "type": "string"
                    },
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "hubspotId",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "alhsHubspotSyncController.verifyHubspotOpportunityGet"
      }
    },
    "/alhs/hubspot-sync/opportunity/{id}": {
      "post": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "syncOneOpportunityById",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Sync one opportunity to HubSpot by local ID",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "localId": {
                      "type": "number"
                    },
                    "crmId": {
                      "type": "string"
                    },
                    "hubspotId": {
                      "type": "string"
                    },
                    "status": {
                      "type": "string"
                    },
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhsHubspotSyncController.syncOneOpportunityById"
      }
    },
    "/alhs/hubspot-sync/opportunity": {
      "post": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "syncOneOpportunity",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Sync one opportunity to HubSpot",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "localId": {
                      "type": "number"
                    },
                    "crmId": {
                      "type": "string"
                    },
                    "hubspotId": {
                      "type": "string"
                    },
                    "status": {
                      "type": "string"
                    },
                    "error": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "Local opportunity payload",
          "required": true
        },
        "operationId": "alhsHubspotSyncController.syncOneOpportunity"
      }
    },
    "/alhs/hubspot-sync/properties/deals": {
      "get": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "getDealProperties",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotSyncController.getDealProperties"
          }
        },
        "operationId": "alhsHubspotSyncController.getDealProperties"
      }
    },
    "/alhs/hubspot-sync/properties/group/{groupName}": {
      "delete": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "deletePropertyGroup",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsHubspotSyncController.deletePropertyGroup"
          }
        },
        "parameters": [
          {
            "name": "groupName",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          },
          {
            "name": "dryRun",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "operationId": "alhsHubspotSyncController.deletePropertyGroup"
      }
    },
    "/alhs/hubspot-sync/scheduler/run": {
      "post": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "runSchedulerForRecentHubspotChanges",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Run scheduler pipeline for recent HubSpot deal changes",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          },
          "description": "Optional scheduler window/limit overrides",
          "required": false
        },
        "operationId": "alhsHubspotSyncController.runSchedulerForRecentHubspotChanges"
      }
    },
    "/alhs/hubspot-sync/to-hubspot": {
      "post": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "syncToHubspot",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Sync opportunities to HubSpot",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "operationId": "alhsHubspotSyncController.syncToHubspot"
      }
    },
    "/alhs/hubspot-sync-scheduler/config": {
      "post": {
        "x-controller-name": "alhsHubspotSyncSchedulerController",
        "x-operation-name": "updateConfig",
        "tags": [
          "alhsHubspotSyncSchedulerController"
        ],
        "responses": {
          "200": {
            "description": "Update HubSpot sync scheduler config",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "alhsHubspotSyncSchedulerController.updateConfig"
      },
      "get": {
        "x-controller-name": "alhsHubspotSyncSchedulerController",
        "x-operation-name": "getConfig",
        "tags": [
          "alhsHubspotSyncSchedulerController"
        ],
        "responses": {
          "200": {
            "description": "Get HubSpot sync scheduler config",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "operationId": "alhsHubspotSyncSchedulerController.getConfig"
      }
    },
    "/alhs/hubspot-webhook/activate-deal-subscriptions": {
      "post": {
        "x-controller-name": "alhsWebhookController",
        "x-operation-name": "activateHubspotWebhookDealSubscriptions",
        "tags": [
          "alhsWebhookController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsWebhookController.activateHubspotalhsWebhookDealSubscriptions"
          }
        },
        "operationId": "alhsWebhookController.activateHubspotalhsWebhookDealSubscriptions"
      }
    },
    "/alhs/hubspot-webhook/deal-subscriptions": {
      "get": {
        "x-controller-name": "alhsWebhookController",
        "x-operation-name": "getHubspotWebhookDealSubscriptions",
        "tags": [
          "alhsWebhookController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsWebhookController.getHubspotalhsWebhookDealSubscriptions"
          }
        },
        "operationId": "alhsWebhookController.getHubspotalhsWebhookDealSubscriptions"
      }
    },
    "/alhs/hubspot-webhook/delete-deal-subscriptions": {
      "post": {
        "x-controller-name": "alhsWebhookController",
        "x-operation-name": "deleteHubspotWebhookDealSubscriptions",
        "tags": [
          "alhsWebhookController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsWebhookController.deleteHubspotalhsWebhookDealSubscriptions"
          }
        },
        "operationId": "alhsWebhookController.deleteHubspotalhsWebhookDealSubscriptions"
      }
    },
    "/alhs/hubspot-webhook/opportunities/all": {
      "get": {
        "x-controller-name": "alhsWebhookController",
        "x-operation-name": "getHubspotWebhookLogs",
        "tags": [
          "alhsWebhookController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsWebhookController.getHubspotalhsWebhookLogs"
          }
        },
        "parameters": [
          {
            "name": "limit",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "alhsWebhookController.getHubspotalhsWebhookLogs"
      }
    },
    "/alhs/hubspot-webhook/opportunities/clear": {
      "post": {
        "x-controller-name": "alhsWebhookController",
        "x-operation-name": "clearHubspotWebhookLogs",
        "tags": [
          "alhsWebhookController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsWebhookController.clearHubspotalhsWebhookLogs"
          }
        },
        "operationId": "alhsWebhookController.clearHubspotalhsWebhookLogs"
      }
    },
    "/alhs/hubspot-webhook/settings": {
      "get": {
        "x-controller-name": "alhsWebhookController",
        "x-operation-name": "getHubspotWebhookSettings",
        "tags": [
          "alhsWebhookController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsWebhookController.getHubspotalhsWebhookSettings"
          }
        },
        "operationId": "alhsWebhookController.getHubspotalhsWebhookSettings"
      }
    },
    "/alhs/hubspot-webhook/stream": {
      "get": {
        "x-controller-name": "alhsWebhookController",
        "x-operation-name": "streamHubspotWebhook",
        "tags": [
          "alhsWebhookController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsWebhookController.streamHubspotalhsWebhook"
          }
        },
        "operationId": "alhsWebhookController.streamHubspotalhsWebhook"
      }
    },
    "/alhs/hubspot-webhook/update-settings": {
      "post": {
        "x-controller-name": "alhsWebhookController",
        "x-operation-name": "updateHubspotWebhookSettings",
        "tags": [
          "alhsWebhookController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsWebhookController.updateHubspotalhsWebhookSettings"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object",
                "required": [
                  "webhookUrl"
                ],
                "properties": {
                  "webhookUrl": {
                    "type": "string"
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsWebhookController.updateHubspotalhsWebhookSettings"
      }
    },
    "/alhs/hubspot-webhook": {
      "post": {
        "x-controller-name": "alhsWebhookController",
        "x-operation-name": "receiveHubspotWebhook",
        "tags": [
          "alhsWebhookController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsWebhookController.receiveHubspotalhsWebhook"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "object",
                  "required": [
                    "subscriptionType",
                    "objectId"
                  ],
                  "properties": {
                    "eventId": {
                      "type": "number"
                    },
                    "subscriptionId": {
                      "type": "number"
                    },
                    "portalId": {
                      "type": "number"
                    },
                    "appId": {
                      "type": "number"
                    },
                    "occurredAt": {
                      "type": "number"
                    },
                    "subscriptionType": {
                      "type": "string"
                    },
                    "attemptNumber": {
                      "type": "number"
                    },
                    "objectId": {
                      "type": "number"
                    },
                    "propertyName": {
                      "type": "string"
                    },
                    "propertyValue": {
                      "type": "string"
                    },
                    "changeSource": {
                      "type": "string"
                    },
                    "sourceId": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          },
          "description": "HubSpot webhook payload",
          "required": true
        },
        "operationId": "alhsWebhookController.receiveHubspotalhsWebhook"
      }
    },
    "/alhs/ping": {
      "get": {
        "x-controller-name": "alhsPingController",
        "x-operation-name": "ping",
        "tags": [
          "alhsPingController"
        ],
        "responses": {
          "200": {
            "description": "alhsPing Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsPingResponse"
                }
              }
            }
          }
        },
        "operationId": "alhsPingController.ping"
      }
    },
    "/alhs/ping2": {
      "get": {
        "x-controller-name": "alhsPing2Controller",
        "x-operation-name": "ping2",
        "tags": [
          "alhsPing2Controller"
        ],
        "responses": {
          "200": {
            "description": "alhsPing2 Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhsPing2Response"
                }
              }
            }
          }
        },
        "operationId": "alhsPing2Controller.ping2"
      }
    },
    "/alhs/sync/activity-feed": {
      "get": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "getSyncActivityFeed",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Sync activity feed",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "activities": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "string"
                          },
                          "type": {
                            "type": "string",
                            "enum": [
                              "sync",
                              "created",
                              "updated",
                              "error"
                            ]
                          },
                          "message": {
                            "type": "string"
                          },
                          "date": {
                            "type": "string"
                          },
                          "opportunityName": {
                            "type": "string"
                          },
                          "awsOppId": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsHubspotSyncController.getSyncActivityFeed"
      }
    },
    "/alhs/sync/opportunities-detailed": {
      "get": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "getOpportunitiesDetailed",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Detailed opportunities list with sync status",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "opportunities": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "id": {
                            "type": "number"
                          },
                          "status": {
                            "type": "string",
                            "enum": [
                              "synced",
                              "not_synced",
                              "error",
                              "conflict"
                            ]
                          },
                          "awsOppId": {
                            "type": "string"
                          },
                          "partnerCrmUniqueId": {
                            "type": "string"
                          },
                          "dealName": {
                            "type": "string"
                          },
                          "title": {
                            "type": "string"
                          },
                          "customerName": {
                            "type": "string"
                          }
                        }
                      }
                    },
                    "conflicts": {
                      "type": "number"
                    },
                    "errors": {
                      "type": "number"
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsHubspotSyncController.getOpportunitiesDetailed"
      }
    },
    "/alhs/sync/status-overview": {
      "get": {
        "x-controller-name": "alhsHubspotSyncController",
        "x-operation-name": "getSyncStatusOverview",
        "tags": [
          "alhsHubspotSyncController"
        ],
        "responses": {
          "200": {
            "description": "Sync status overview (AWS/DB and HubSpot)",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "totalInAws": {
                      "type": "number"
                    },
                    "syncedToSharedDb": {
                      "type": "number"
                    },
                    "notSynced": {
                      "type": "number"
                    },
                    "conflicts": {
                      "type": "number"
                    },
                    "errors": {
                      "type": "number"
                    },
                    "hubspot": {
                      "type": "object",
                      "properties": {
                        "totalInHubspot": {
                          "type": "number"
                        },
                        "syncedToLocal": {
                          "type": "number"
                        },
                        "notSyncedToLocal": {
                          "type": "number"
                        },
                        "nonAwsDeals": {
                          "type": "number"
                        },
                        "error": {
                          "type": "string"
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsHubspotSyncController.getSyncStatusOverview"
      }
    },
    "/alhs/webhook/opportunities/all": {
      "get": {
        "x-controller-name": "alhsWebhookController",
        "x-operation-name": "getAllOpportunitiesLogs",
        "tags": [
          "alhsWebhookController"
        ],
        "responses": {
          "200": {
            "description": "All saved opportunities",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object"
                  }
                }
              }
            }
          }
        },
        "operationId": "alhsWebhookController.getAllOpportunitiesLogs"
      }
    },
    "/alhs/webhook/opportunities/stream": {
      "get": {
        "x-controller-name": "alhsWebhookController",
        "x-operation-name": "stream",
        "tags": [
          "alhsWebhookController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsWebhookController.stream"
          }
        },
        "operationId": "alhsWebhookController.stream"
      }
    },
    "/alhs/webhook/opportunities": {
      "delete": {
        "x-controller-name": "alhsWebhookController",
        "x-operation-name": "clearOpportunitiesLogs",
        "tags": [
          "alhsWebhookController"
        ],
        "responses": {
          "204": {
            "description": "All logs removed"
          }
        },
        "operationId": "alhsWebhookController.clearOpportunitiesLogs"
      }
    },
    "/alhs/webhook": {
      "post": {
        "x-controller-name": "alhsWebhookController",
        "x-operation-name": "receive",
        "tags": [
          "alhsWebhookController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhsWebhookController.receive"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "array",
                "items": {
                  "type": "object"
                }
              }
            }
          },
          "description": "alhsWebhook payload"
        },
        "operationId": "alhsWebhookController.receive"
      }
    },
    "/alhs1/alace/common-config/settings": {
      "get": {
        "x-controller-name": "alhs1alaceCommonConfigController",
        "x-operation-name": "getCs",
        "tags": [
          "alhs1alaceCommonConfigController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhs1alaceCommonConfigController.getCS"
          }
        },
        "operationId": "alhs1alaceCommonConfigController.getCS"
      }
    },
    "/alhs1/alace/common-config/sts": {
      "get": {
        "x-controller-name": "alhs1alaceCommonConfigController",
        "x-operation-name": "getTc",
        "tags": [
          "alhs1alaceCommonConfigController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhs1alaceCommonConfigController.getTC"
          }
        },
        "operationId": "alhs1alaceCommonConfigController.getTC"
      }
    },
    "/alhs1/alace/configurations/count": {
      "get": {
        "x-controller-name": "alhs1alaceConfigurationsController",
        "x-operation-name": "count",
        "tags": [
          "alhs1alaceConfigurationsController"
        ],
        "responses": {
          "200": {
            "description": "alhs1alaceConfigurations count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceConfigurations.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs1alaceConfigurations.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs1alaceConfigurations>"
                }
              }
            }
          }
        ],
        "operationId": "alhs1alaceConfigurationsController.count"
      }
    },
    "/alhs1/alace/configurations/{id}": {
      "put": {
        "x-controller-name": "alhs1alaceConfigurationsController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhs1alaceConfigurationsController"
        ],
        "responses": {
          "204": {
            "description": "alhs1alaceConfigurations was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceConfigurations"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhs1alaceConfigurationsController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhs1alaceConfigurationsController",
        "x-operation-name": "updateById",
        "tags": [
          "alhs1alaceConfigurationsController"
        ],
        "responses": {
          "204": {
            "description": "alhs1alaceConfigurations was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceConfigurationsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhs1alaceConfigurationsController.updateById"
      },
      "get": {
        "x-controller-name": "alhs1alaceConfigurationsController",
        "x-operation-name": "findById",
        "tags": [
          "alhs1alaceConfigurationsController"
        ],
        "responses": {
          "200": {
            "description": "alhs1alaceConfigurations instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceConfigurationsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceConfigurations.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs1alaceConfigurationsController.findById"
      },
      "delete": {
        "x-controller-name": "alhs1alaceConfigurationsController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhs1alaceConfigurationsController"
        ],
        "responses": {
          "204": {
            "description": "alhs1alaceConfigurations was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhs1alaceConfigurationsController.deleteById"
      }
    },
    "/alhs1/alace/configurations": {
      "post": {
        "x-controller-name": "alhs1alaceConfigurationsController",
        "x-operation-name": "create",
        "tags": [
          "alhs1alaceConfigurationsController"
        ],
        "responses": {
          "200": {
            "description": "alhs1alaceConfigurations instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceConfigurations"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceNewConfigurations"
              }
            }
          }
        },
        "operationId": "alhs1alaceConfigurationsController.create"
      },
      "patch": {
        "x-controller-name": "alhs1alaceConfigurationsController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhs1alaceConfigurationsController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhs1alaceConfigurations models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs1alaceConfigurations.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs1alaceConfigurations>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceConfigurationsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhs1alaceConfigurationsController.updateAll"
      },
      "get": {
        "x-controller-name": "alhs1alaceConfigurationsController",
        "x-operation-name": "find",
        "tags": [
          "alhs1alaceConfigurationsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs1alaceConfigurations instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs1alaceConfigurationsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceConfigurations.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs1alaceConfigurationsController.find"
      }
    },
    "/alhs1/alace/field-configurations/count": {
      "get": {
        "x-controller-name": "alhs1alaceFieldConfigurationsController",
        "x-operation-name": "count",
        "tags": [
          "alhs1alaceFieldConfigurationsController"
        ],
        "responses": {
          "200": {
            "description": "alhs1alaceFieldConfigurations count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceFieldConfigurations.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs1alaceFieldConfigurations.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs1alaceFieldConfigurations>"
                }
              }
            }
          }
        ],
        "operationId": "alhs1alaceFieldConfigurationsController.count"
      }
    },
    "/alhs1/alace/field-configurations/{id}": {
      "put": {
        "x-controller-name": "alhs1alaceFieldConfigurationsController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhs1alaceFieldConfigurationsController"
        ],
        "responses": {
          "204": {
            "description": "alhs1alaceFieldConfigurations was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceFieldConfigurations"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhs1alaceFieldConfigurationsController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhs1alaceFieldConfigurationsController",
        "x-operation-name": "updateById",
        "tags": [
          "alhs1alaceFieldConfigurationsController"
        ],
        "responses": {
          "204": {
            "description": "alhs1alaceFieldConfigurations was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceFieldConfigurationsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhs1alaceFieldConfigurationsController.updateById"
      },
      "get": {
        "x-controller-name": "alhs1alaceFieldConfigurationsController",
        "x-operation-name": "findById",
        "tags": [
          "alhs1alaceFieldConfigurationsController"
        ],
        "responses": {
          "200": {
            "description": "alhs1alaceFieldConfigurations instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceFieldConfigurationsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceFieldConfigurations.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs1alaceFieldConfigurationsController.findById"
      },
      "delete": {
        "x-controller-name": "alhs1alaceFieldConfigurationsController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhs1alaceFieldConfigurationsController"
        ],
        "responses": {
          "204": {
            "description": "alhs1alaceFieldConfigurations was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhs1alaceFieldConfigurationsController.deleteById"
      }
    },
    "/alhs1/alace/field-configurations": {
      "post": {
        "x-controller-name": "alhs1alaceFieldConfigurationsController",
        "x-operation-name": "create",
        "tags": [
          "alhs1alaceFieldConfigurationsController"
        ],
        "responses": {
          "200": {
            "description": "alhs1alaceFieldConfigurations instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceFieldConfigurations"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceNewFieldConfigurations"
              }
            }
          }
        },
        "operationId": "alhs1alaceFieldConfigurationsController.create"
      },
      "patch": {
        "x-controller-name": "alhs1alaceFieldConfigurationsController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhs1alaceFieldConfigurationsController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhs1alaceFieldConfigurations models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs1alaceFieldConfigurations.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs1alaceFieldConfigurations>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceFieldConfigurationsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhs1alaceFieldConfigurationsController.updateAll"
      },
      "get": {
        "x-controller-name": "alhs1alaceFieldConfigurationsController",
        "x-operation-name": "find",
        "tags": [
          "alhs1alaceFieldConfigurationsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs1alaceFieldConfigurations instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs1alaceFieldConfigurationsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceFieldConfigurations.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs1alaceFieldConfigurationsController.find"
      }
    },
    "/alhs1/alace/opportunity/list": {
      "post": {
        "x-controller-name": "alhs1alaceOpportunityController",
        "x-operation-name": "listAwsOpportunities",
        "tags": [
          "alhs1alaceOpportunityController"
        ],
        "x-external-op-controller": true,
        "responses": {
          "200": {
            "description": "Return value of alhs1alaceOpportunity.listAwsOpportunities"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceOpportunity"
              }
            }
          }
        },
        "operationId": "alhs1alaceOpportunityController.listAwsOpportunities"
      }
    },
    "/alhs1/alace/solution/list": {
      "post": {
        "x-controller-name": "alhs1alaceSolutionController",
        "x-operation-name": "listAwsSolutions",
        "tags": [
          "alhs1alaceSolutionController"
        ],
        "x-external-op-controller": true,
        "responses": {
          "200": {
            "description": "Return value of alhs1alaceSolution.listAwsalhs1alaceSolutions"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceSolution"
              }
            }
          }
        },
        "operationId": "alhs1alaceSolutionController.listAwsalhs1alaceSolutions"
      }
    },
    "/alhs1/alace/sts/count": {
      "get": {
        "x-controller-name": "alhs1alaceStsController",
        "x-operation-name": "count",
        "tags": [
          "alhs1alaceStsController"
        ],
        "responses": {
          "200": {
            "description": "alhs1alaceSts count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceSts.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs1alaceSts.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs1alaceSts>"
                }
              }
            }
          }
        ],
        "operationId": "alhs1alaceStsController.count"
      }
    },
    "/alhs1/alace/sts/{id}": {
      "put": {
        "x-controller-name": "alhs1alaceStsController",
        "x-operation-name": "replaceById",
        "tags": [
          "alhs1alaceStsController"
        ],
        "responses": {
          "204": {
            "description": "alhs1alaceSts was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceSts"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhs1alaceStsController.replaceById"
      },
      "patch": {
        "x-controller-name": "alhs1alaceStsController",
        "x-operation-name": "updateById",
        "tags": [
          "alhs1alaceStsController"
        ],
        "responses": {
          "204": {
            "description": "alhs1alaceSts was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceStsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhs1alaceStsController.updateById"
      },
      "get": {
        "x-controller-name": "alhs1alaceStsController",
        "x-operation-name": "findById",
        "tags": [
          "alhs1alaceStsController"
        ],
        "responses": {
          "200": {
            "description": "alhs1alaceSts instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceStsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceSts.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs1alaceStsController.findById"
      },
      "delete": {
        "x-controller-name": "alhs1alaceStsController",
        "x-operation-name": "deleteById",
        "tags": [
          "alhs1alaceStsController"
        ],
        "responses": {
          "204": {
            "description": "alhs1alaceSts was deleted"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-generated": true,
              "x-primary-key": true,
              "type": "number"
            },
            "required": true
          }
        ],
        "operationId": "alhs1alaceStsController.deleteById"
      }
    },
    "/alhs1/alace/sts": {
      "post": {
        "x-controller-name": "alhs1alaceStsController",
        "x-operation-name": "create",
        "tags": [
          "alhs1alaceStsController"
        ],
        "responses": {
          "200": {
            "description": "alhs1alaceSts instance created",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceSts"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceNewSts"
              }
            }
          }
        },
        "operationId": "alhs1alaceStsController.create"
      },
      "patch": {
        "x-controller-name": "alhs1alaceStsController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhs1alaceStsController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhs1alaceSts models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs1alaceSts.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs1alaceSts>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs1alaceStsPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhs1alaceStsController.updateAll"
      },
      "get": {
        "x-controller-name": "alhs1alaceStsController",
        "x-operation-name": "find",
        "tags": [
          "alhs1alaceStsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs1alaceSts instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs1alaceStsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1alaceSts.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs1alaceStsController.find"
      }
    },
    "/alhs1/hubspot-config/settings": {
      "get": {
        "x-controller-name": "alhs1HubspotConfigController",
        "x-operation-name": "getCommonHubspotSettings",
        "tags": [
          "alhs1HubspotConfigController"
        ],
        "responses": {
          "200": {
            "description": "Return value of alhs1HubspotConfigController.getCommonHubspotSettings"
          }
        },
        "operationId": "alhs1HubspotConfigController.getCommonHubspotSettings"
      }
    },
    "/alhs1/ping": {
      "get": {
        "x-controller-name": "alhs1PingController",
        "x-operation-name": "ping",
        "tags": [
          "alhs1PingController"
        ],
        "responses": {
          "200": {
            "description": "alhs1Ping Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1PingResponse"
                }
              }
            }
          }
        },
        "operationId": "alhs1PingController.ping"
      }
    },
    "/alhs1/ping2": {
      "get": {
        "x-controller-name": "alhs1Ping2Controller",
        "x-operation-name": "ping2",
        "tags": [
          "alhs1Ping2Controller"
        ],
        "responses": {
          "200": {
            "description": "alhs1Ping2 Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs1Ping2Response"
                }
              }
            }
          }
        },
        "operationId": "alhs1Ping2Controller.ping2"
      }
    },
    "/alhs2/defval/aladv/ai-models/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvAiModelController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvAiModelController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvAiModel count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvAiModel.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvAiModel.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvAiModel>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvAiModelController.count"
      }
    },
    "/alhs2/defval/aladv/ai-models/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvAiModelController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvAiModelController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvAiModel instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvAiModelWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvAiModel.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvAiModelController.findById"
      }
    },
    "/alhs2/defval/aladv/ai-models": {
      "get": {
        "x-controller-name": "alhs2defvalaladvAiModelController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvAiModelController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvAiModel instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvAiModelWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvAiModel.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvAiModelController.find"
      }
    },
    "/alhs2/defval/aladv/ai-providers/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvAiProviderController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvAiProviderController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvAiProvider count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvAiProvider.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvAiProvider.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvAiProvider>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvAiProviderController.count"
      }
    },
    "/alhs2/defval/aladv/ai-providers/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvAiProviderController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvAiProviderController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvAiProvider instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvAiProviderWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvAiProvider.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvAiProviderController.findById"
      }
    },
    "/alhs2/defval/aladv/ai-providers": {
      "get": {
        "x-controller-name": "alhs2defvalaladvAiProviderController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvAiProviderController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvAiProvider instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvAiProviderWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvAiProvider.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvAiProviderController.find"
      }
    },
    "/alhs2/defval/aladv/apn-programs/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvApnProgramsController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvApnProgramsController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvApnPrograms count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvApnPrograms.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvApnPrograms.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvApnPrograms>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvApnProgramsController.count"
      }
    },
    "/alhs2/defval/aladv/apn-programs/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvApnProgramsController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvApnProgramsController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvApnPrograms instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvApnProgramsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvApnPrograms.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvApnProgramsController.findById"
      }
    },
    "/alhs2/defval/aladv/apn-programs": {
      "get": {
        "x-controller-name": "alhs2defvalaladvApnProgramsController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvApnProgramsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvApnPrograms instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvApnProgramsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvApnPrograms.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvApnProgramsController.find"
      }
    },
    "/alhs2/defval/aladv/aws-products/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvAwsProductsController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvAwsProductsController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvAwsProducts count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvAwsProducts.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvAwsProducts.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvAwsProducts>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvAwsProductsController.count"
      }
    },
    "/alhs2/defval/aladv/aws-products/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvAwsProductsController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvAwsProductsController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvAwsProducts instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvAwsProductsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvAwsProducts.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvAwsProductsController.findById"
      }
    },
    "/alhs2/defval/aladv/aws-products": {
      "get": {
        "x-controller-name": "alhs2defvalaladvAwsProductsController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvAwsProductsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvAwsProducts instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvAwsProductsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvAwsProducts.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvAwsProductsController.find"
      }
    },
    "/alhs2/defval/aladv/business-rules/by-name/{name}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvBusinessRulesByNameController",
        "x-operation-name": "findByName",
        "tags": [
          "alhs2defvalaladvBusinessRulesByNameController"
        ],
        "responses": {
          "200": {
            "description": "Business rule fetched by name",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "id": {
                      "type": "number"
                    },
                    "name": {
                      "type": "string"
                    },
                    "description": {
                      "type": "string"
                    },
                    "ruleJson": {
                      "type": "object"
                    },
                    "status": {
                      "type": "string"
                    },
                    "version": {
                      "type": "number"
                    },
                    "createdAt": {
                      "type": "string",
                      "format": "date-time"
                    },
                    "updatedAt": {
                      "type": "string",
                      "format": "date-time"
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "name",
            "in": "path",
            "schema": {
              "type": "string"
            },
            "required": true
          }
        ],
        "operationId": "alhs2defvalaladvBusinessRulesByNameController.findByName"
      }
    },
    "/alhs2/defval/aladv/business-rules/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvBusinessRulesController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvBusinessRulesController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvBusinessRules count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvBusinessRules.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvBusinessRules.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvBusinessRules>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvBusinessRulesController.count"
      }
    },
    "/alhs2/defval/aladv/business-rules/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvBusinessRulesController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvBusinessRulesController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvBusinessRules instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvBusinessRulesWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvBusinessRules.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvBusinessRulesController.findById"
      }
    },
    "/alhs2/defval/aladv/business-rules": {
      "get": {
        "x-controller-name": "alhs2defvalaladvBusinessRulesController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvBusinessRulesController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvBusinessRules instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvBusinessRulesWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvBusinessRules.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvBusinessRulesController.find"
      }
    },
    "/alhs2/defval/aladv/closed-lost-reasons/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvClosedLostReasonController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvClosedLostReasonController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvClosedLostReason count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvClosedLostReason.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvClosedLostReason.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvClosedLostReason>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvClosedLostReasonController.count"
      }
    },
    "/alhs2/defval/aladv/closed-lost-reasons/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvClosedLostReasonController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvClosedLostReasonController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvClosedLostReason instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvClosedLostReasonWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvClosedLostReason.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvClosedLostReasonController.findById"
      }
    },
    "/alhs2/defval/aladv/closed-lost-reasons": {
      "get": {
        "x-controller-name": "alhs2defvalaladvClosedLostReasonController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvClosedLostReasonController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvClosedLostReason instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvClosedLostReasonWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvClosedLostReason.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvClosedLostReasonController.find"
      }
    },
    "/alhs2/defval/aladv/competitive-trackings/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvCompetitiveTrackingController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvCompetitiveTrackingController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvCompetitiveTracking count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvCompetitiveTracking.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvCompetitiveTracking.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvCompetitiveTracking>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvCompetitiveTrackingController.count"
      }
    },
    "/alhs2/defval/aladv/competitive-trackings/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvCompetitiveTrackingController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvCompetitiveTrackingController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvCompetitiveTracking instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvCompetitiveTrackingWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvCompetitiveTracking.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvCompetitiveTrackingController.findById"
      }
    },
    "/alhs2/defval/aladv/competitive-trackings": {
      "get": {
        "x-controller-name": "alhs2defvalaladvCompetitiveTrackingController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvCompetitiveTrackingController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvCompetitiveTracking instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvCompetitiveTrackingWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvCompetitiveTracking.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvCompetitiveTrackingController.find"
      }
    },
    "/alhs2/defval/aladv/countries/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvCountryController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvCountryController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvCountry count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvCountry.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvCountry.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvCountry>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvCountryController.count"
      }
    },
    "/alhs2/defval/aladv/countries/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvCountryController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvCountryController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvCountry instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvCountryWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvCountry.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvCountryController.findById"
      }
    },
    "/alhs2/defval/aladv/countries": {
      "get": {
        "x-controller-name": "alhs2defvalaladvCountryController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvCountryController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvCountry instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvCountryWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvCountry.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvCountryController.find"
      }
    },
    "/alhs2/defval/aladv/cron-configs/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvCronConfigController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvCronConfigController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvCronConfig count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvCronConfig.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvCronConfig.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvCronConfig>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvCronConfigController.count"
      }
    },
    "/alhs2/defval/aladv/cron-configs/{id}": {
      "patch": {
        "x-controller-name": "alhs2defvalaladvCronConfigController",
        "x-operation-name": "updateById",
        "tags": [
          "alhs2defvalaladvCronConfigController"
        ],
        "responses": {
          "204": {
            "description": "alhs2defvalaladvCronConfig was updated"
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs2defvalaladvCronConfigPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhs2defvalaladvCronConfigController.updateById"
      },
      "get": {
        "x-controller-name": "alhs2defvalaladvCronConfigController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvCronConfigController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvCronConfig instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvCronConfigWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvCronConfig.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvCronConfigController.findById"
      }
    },
    "/alhs2/defval/aladv/cron-configs": {
      "patch": {
        "x-controller-name": "alhs2defvalaladvCronConfigController",
        "x-operation-name": "updateAll",
        "tags": [
          "alhs2defvalaladvCronConfigController"
        ],
        "responses": {
          "200": {
            "description": "Count of alhs2defvalaladvCronConfig models updated",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvCronConfig.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvCronConfig>"
                }
              }
            }
          }
        ],
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "$ref": "#/components/schemas/alhs2defvalaladvCronConfigPartial"
              }
            }
          },
          "x-parameter-index": 1
        },
        "operationId": "alhs2defvalaladvCronConfigController.updateAll"
      },
      "get": {
        "x-controller-name": "alhs2defvalaladvCronConfigController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvCronConfigController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvCronConfig instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvCronConfigWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvCronConfig.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvCronConfigController.find"
      }
    },
    "/alhs2/defval/aladv/delivery-models/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvDeliveryModelController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvDeliveryModelController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvDeliveryModel count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvDeliveryModel.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvDeliveryModel.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvDeliveryModel>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvDeliveryModelController.count"
      }
    },
    "/alhs2/defval/aladv/delivery-models/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvDeliveryModelController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvDeliveryModelController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvDeliveryModel instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvDeliveryModelWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvDeliveryModel.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvDeliveryModelController.findById"
      }
    },
    "/alhs2/defval/aladv/delivery-models": {
      "get": {
        "x-controller-name": "alhs2defvalaladvDeliveryModelController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvDeliveryModelController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvDeliveryModel instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvDeliveryModelWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvDeliveryModel.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvDeliveryModelController.find"
      }
    },
    "/alhs2/defval/aladv/durations/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvDurationController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvDurationController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvDuration count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvDuration.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvDuration.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvDuration>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvDurationController.count"
      }
    },
    "/alhs2/defval/aladv/durations/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvDurationController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvDurationController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvDuration instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvDurationWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvDuration.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvDurationController.findById"
      }
    },
    "/alhs2/defval/aladv/durations": {
      "get": {
        "x-controller-name": "alhs2defvalaladvDurationController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvDurationController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvDuration instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvDurationWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvDuration.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvDurationController.find"
      }
    },
    "/alhs2/defval/aladv/hubspot-company-properties/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvHubspotCompanyPropertiesController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvHubspotCompanyPropertiesController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvHubspotCompanyProperties count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvHubspotCompanyProperties.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvHubspotCompanyProperties.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvHubspotCompanyProperties>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvHubspotCompanyPropertiesController.count"
      }
    },
    "/alhs2/defval/aladv/hubspot-company-properties/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvHubspotCompanyPropertiesController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvHubspotCompanyPropertiesController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvHubspotCompanyProperties instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvHubspotCompanyPropertiesWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvHubspotCompanyProperties.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvHubspotCompanyPropertiesController.findById"
      }
    },
    "/alhs2/defval/aladv/hubspot-company-properties": {
      "get": {
        "x-controller-name": "alhs2defvalaladvHubspotCompanyPropertiesController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvHubspotCompanyPropertiesController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvHubspotCompanyProperties instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvHubspotCompanyPropertiesWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvHubspotCompanyProperties.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvHubspotCompanyPropertiesController.find"
      }
    },
    "/alhs2/defval/aladv/hubspot-deal-properties-v2s/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvHubspotDealPropertiesV2Controller",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvHubspotDealPropertiesV2Controller"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvHubspotDealPropertiesV2 count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvHubspotDealPropertiesV2.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvHubspotDealPropertiesV2.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvHubspotDealPropertiesV2>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvHubspotDealPropertiesV2Controller.count"
      }
    },
    "/alhs2/defval/aladv/hubspot-deal-properties-v2s/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvHubspotDealPropertiesV2Controller",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvHubspotDealPropertiesV2Controller"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvHubspotDealPropertiesV2 instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvHubspotDealPropertiesV2WithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvHubspotDealPropertiesV2.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvHubspotDealPropertiesV2Controller.findById"
      }
    },
    "/alhs2/defval/aladv/hubspot-deal-properties-v2s": {
      "get": {
        "x-controller-name": "alhs2defvalaladvHubspotDealPropertiesV2Controller",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvHubspotDealPropertiesV2Controller"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvHubspotDealPropertiesV2 instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvHubspotDealPropertiesV2WithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvHubspotDealPropertiesV2.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvHubspotDealPropertiesV2Controller.find"
      }
    },
    "/alhs2/defval/aladv/industry-verticals/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvIndustryVerticalController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvIndustryVerticalController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvIndustryVertical count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvIndustryVertical.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvIndustryVertical.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvIndustryVertical>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvIndustryVerticalController.count"
      }
    },
    "/alhs2/defval/aladv/industry-verticals/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvIndustryVerticalController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvIndustryVerticalController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvIndustryVertical instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvIndustryVerticalWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvIndustryVertical.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvIndustryVerticalController.findById"
      }
    },
    "/alhs2/defval/aladv/industry-verticals": {
      "get": {
        "x-controller-name": "alhs2defvalaladvIndustryVerticalController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvIndustryVerticalController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvIndustryVertical instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvIndustryVerticalWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvIndustryVertical.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvIndustryVerticalController.find"
      }
    },
    "/alhs2/defval/aladv/marketing-activity-channels/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvMarketingActivityChannelController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvMarketingActivityChannelController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvMarketingActivityChannel count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvMarketingActivityChannel.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvMarketingActivityChannel.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvMarketingActivityChannel>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvMarketingActivityChannelController.count"
      }
    },
    "/alhs2/defval/aladv/marketing-activity-channels/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvMarketingActivityChannelController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvMarketingActivityChannelController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvMarketingActivityChannel instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvMarketingActivityChannelWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvMarketingActivityChannel.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvMarketingActivityChannelController.findById"
      }
    },
    "/alhs2/defval/aladv/marketing-activity-channels": {
      "get": {
        "x-controller-name": "alhs2defvalaladvMarketingActivityChannelController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvMarketingActivityChannelController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvMarketingActivityChannel instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvMarketingActivityChannelWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvMarketingActivityChannel.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvMarketingActivityChannelController.find"
      }
    },
    "/alhs2/defval/aladv/marketing-activity-use-cases/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvMarketingActivityUseCaseController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvMarketingActivityUseCaseController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvMarketingActivityUseCase count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvMarketingActivityUseCase.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvMarketingActivityUseCase.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvMarketingActivityUseCase>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvMarketingActivityUseCaseController.count"
      }
    },
    "/alhs2/defval/aladv/marketing-activity-use-cases/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvMarketingActivityUseCaseController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvMarketingActivityUseCaseController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvMarketingActivityUseCase instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvMarketingActivityUseCaseWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvMarketingActivityUseCase.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvMarketingActivityUseCaseController.findById"
      }
    },
    "/alhs2/defval/aladv/marketing-activity-use-cases": {
      "get": {
        "x-controller-name": "alhs2defvalaladvMarketingActivityUseCaseController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvMarketingActivityUseCaseController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvMarketingActivityUseCase instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvMarketingActivityUseCaseWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvMarketingActivityUseCase.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvMarketingActivityUseCaseController.find"
      }
    },
    "/alhs2/defval/aladv/opportunity-statistics/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvOpportunityStatisticsController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvOpportunityStatisticsController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvOpportunityStatistics count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvOpportunityStatistics.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvOpportunityStatistics.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvOpportunityStatistics>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvOpportunityStatisticsController.count"
      }
    },
    "/alhs2/defval/aladv/opportunity-statistics/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvOpportunityStatisticsController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvOpportunityStatisticsController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvOpportunityStatistics instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvOpportunityStatisticsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvOpportunityStatistics.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvOpportunityStatisticsController.findById"
      }
    },
    "/alhs2/defval/aladv/opportunity-statistics": {
      "get": {
        "x-controller-name": "alhs2defvalaladvOpportunityStatisticsController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvOpportunityStatisticsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvOpportunityStatistics instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvOpportunityStatisticsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvOpportunityStatistics.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvOpportunityStatisticsController.find"
      }
    },
    "/alhs2/defval/aladv/opportunity-types/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvOpportunityTypeController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvOpportunityTypeController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvOpportunityType count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvOpportunityType.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvOpportunityType.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvOpportunityType>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvOpportunityTypeController.count"
      }
    },
    "/alhs2/defval/aladv/opportunity-types/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvOpportunityTypeController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvOpportunityTypeController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvOpportunityType instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvOpportunityTypeWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvOpportunityType.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvOpportunityTypeController.findById"
      }
    },
    "/alhs2/defval/aladv/opportunity-types": {
      "get": {
        "x-controller-name": "alhs2defvalaladvOpportunityTypeController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvOpportunityTypeController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvOpportunityType instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvOpportunityTypeWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvOpportunityType.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvOpportunityTypeController.find"
      }
    },
    "/alhs2/defval/aladv/partner-primary-needs/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvPartnerPrimaryNeedController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvPartnerPrimaryNeedController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvPartnerPrimaryNeed count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvPartnerPrimaryNeed.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvPartnerPrimaryNeed.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvPartnerPrimaryNeed>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvPartnerPrimaryNeedController.count"
      }
    },
    "/alhs2/defval/aladv/partner-primary-needs/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvPartnerPrimaryNeedController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvPartnerPrimaryNeedController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvPartnerPrimaryNeed instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvPartnerPrimaryNeedWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvPartnerPrimaryNeed.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvPartnerPrimaryNeedController.findById"
      }
    },
    "/alhs2/defval/aladv/partner-primary-needs": {
      "get": {
        "x-controller-name": "alhs2defvalaladvPartnerPrimaryNeedController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvPartnerPrimaryNeedController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvPartnerPrimaryNeed instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvPartnerPrimaryNeedWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvPartnerPrimaryNeed.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvPartnerPrimaryNeedController.find"
      }
    },
    "/alhs2/defval/aladv/ping": {
      "get": {
        "x-controller-name": "alhs2defvalaladvPingController",
        "x-operation-name": "ping",
        "tags": [
          "alhs2defvalaladvPingController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvPing Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvPingResponse"
                }
              }
            }
          }
        },
        "operationId": "alhs2defvalaladvPingController.ping"
      }
    },
    "/alhs2/defval/aladv/ping2": {
      "get": {
        "x-controller-name": "alhs2defvalaladvPing2Controller",
        "x-operation-name": "ping2",
        "tags": [
          "alhs2defvalaladvPing2Controller"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvPing2 Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvPing2Response"
                }
              }
            }
          }
        },
        "operationId": "alhs2defvalaladvPing2Controller.ping2"
      }
    },
    "/alhs2/defval/aladv/postal-codes/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvPostalCodeController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvPostalCodeController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvPostalCode count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvPostalCode.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvPostalCode.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvPostalCode>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvPostalCodeController.count"
      }
    },
    "/alhs2/defval/aladv/postal-codes/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvPostalCodeController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvPostalCodeController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvPostalCode instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvPostalCodeWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvPostalCode.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvPostalCodeController.findById"
      }
    },
    "/alhs2/defval/aladv/postal-codes": {
      "get": {
        "x-controller-name": "alhs2defvalaladvPostalCodeController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvPostalCodeController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvPostalCode instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvPostalCodeWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvPostalCode.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvPostalCodeController.find"
      }
    },
    "/alhs2/defval/aladv/review-statuses/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvReviewStatusController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvReviewStatusController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvReviewStatus count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvReviewStatus.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvReviewStatus.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvReviewStatus>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvReviewStatusController.count"
      }
    },
    "/alhs2/defval/aladv/review-statuses/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvReviewStatusController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvReviewStatusController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvReviewStatus instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvReviewStatusWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvReviewStatus.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvReviewStatusController.findById"
      }
    },
    "/alhs2/defval/aladv/review-statuses": {
      "get": {
        "x-controller-name": "alhs2defvalaladvReviewStatusController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvReviewStatusController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvReviewStatus instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvReviewStatusWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvReviewStatus.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvReviewStatusController.find"
      }
    },
    "/alhs2/defval/aladv/sales-activities/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvSalesActivitiesController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvSalesActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvSalesActivities count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvSalesActivities.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvSalesActivities.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvSalesActivities>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvSalesActivitiesController.count"
      }
    },
    "/alhs2/defval/aladv/sales-activities/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvSalesActivitiesController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvSalesActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvSalesActivities instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvSalesActivitiesWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvSalesActivities.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvSalesActivitiesController.findById"
      }
    },
    "/alhs2/defval/aladv/sales-activities": {
      "get": {
        "x-controller-name": "alhs2defvalaladvSalesActivitiesController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvSalesActivitiesController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvSalesActivities instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvSalesActivitiesWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvSalesActivities.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvSalesActivitiesController.find"
      }
    },
    "/alhs2/defval/aladv/stages/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvStageController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvStageController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvStage count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvStage.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvStage.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvStage>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvStageController.count"
      }
    },
    "/alhs2/defval/aladv/stages/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvStageController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvStageController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvStage instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvStageWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvStage.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvStageController.findById"
      }
    },
    "/alhs2/defval/aladv/stages": {
      "get": {
        "x-controller-name": "alhs2defvalaladvStageController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvStageController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvStage instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvStageWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvStage.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvStageController.find"
      }
    },
    "/alhs2/defval/aladv/state-provinces/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvStateProvinceController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvStateProvinceController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvStateProvince count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvStateProvince.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvStateProvince.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvStateProvince>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvStateProvinceController.count"
      }
    },
    "/alhs2/defval/aladv/state-provinces/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvStateProvinceController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvStateProvinceController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvStateProvince instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvStateProvinceWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvStateProvince.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvStateProvinceController.findById"
      }
    },
    "/alhs2/defval/aladv/state-provinces": {
      "get": {
        "x-controller-name": "alhs2defvalaladvStateProvinceController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvStateProvinceController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvStateProvince instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvStateProvinceWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvStateProvince.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvStateProvinceController.find"
      }
    },
    "/alhs2/defval/aladv/stats/aggregate": {
      "get": {
        "x-controller-name": "alhs2defvalaladvStatsController",
        "x-operation-name": "getAggregate",
        "tags": [
          "alhs2defvalaladvStatsController"
        ],
        "responses": {
          "200": {
            "description": "Aggregated opportunity statistics",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "period": {
                      "type": "object",
                      "properties": {
                        "start": {
                          "type": "string"
                        },
                        "end": {
                          "type": "string"
                        }
                      }
                    },
                    "summary": {
                      "type": "object",
                      "properties": {
                        "totalOpportunities": {
                          "type": "number"
                        },
                        "totalCustomers": {
                          "type": "number"
                        },
                        "maxOpportunities": {
                          "type": "number"
                        },
                        "minOpportunities": {
                          "type": "number"
                        },
                        "avgOpportunities": {
                          "type": "number"
                        }
                      }
                    },
                    "originationBreakdown": {
                      "type": "object",
                      "properties": {
                        "awsOriginated": {
                          "type": "number"
                        },
                        "partnerOriginated": {
                          "type": "number"
                        }
                      }
                    },
                    "customers": {
                      "type": "array",
                      "items": {
                        "type": "object",
                        "properties": {
                          "customer": {
                            "type": "string"
                          },
                          "totalOpportunities": {
                            "type": "number"
                          },
                          "awsOriginated": {
                            "type": "number"
                          },
                          "partnerOriginated": {
                            "type": "number"
                          },
                          "lastReportDate": {
                            "type": "string"
                          },
                          "updatedAt": {
                            "type": "string"
                          }
                        }
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "startDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "endDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "customer",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "showInternalalhs2defvalaladvStats",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "operationId": "alhs2defvalaladvStatsController.getAggregate"
      }
    },
    "/alhs2/defval/aladv/stats/customers": {
      "get": {
        "x-controller-name": "alhs2defvalaladvStatsController",
        "x-operation-name": "getCustomers",
        "tags": [
          "alhs2defvalaladvStatsController"
        ],
        "responses": {
          "200": {
            "description": "List of all customers with statistics",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "customer": {
                        "type": "string"
                      },
                      "latestTotal": {
                        "type": "number"
                      },
                      "lastReportDate": {
                        "type": "string"
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "showInternalalhs2defvalaladvStats",
            "in": "query",
            "schema": {
              "type": "boolean"
            }
          }
        ],
        "operationId": "alhs2defvalaladvStatsController.getCustomers"
      }
    },
    "/alhs2/defval/aladv/stats/history": {
      "get": {
        "x-controller-name": "alhs2defvalaladvStatsController",
        "x-operation-name": "getaladvHistory",
        "tags": [
          "alhs2defvalaladvStatsController"
        ],
        "responses": {
          "200": {
            "description": "Statistics history for a customer",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "type": "object",
                    "properties": {
                      "customer": {
                        "type": "string"
                      },
                      "reportDate": {
                        "type": "string"
                      },
                      "totalOpportunities": {
                        "type": "number"
                      },
                      "awsOriginated": {
                        "type": "number"
                      },
                      "partnerOriginated": {
                        "type": "number"
                      },
                      "updatedAt": {
                        "type": "string"
                      }
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "customer",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "startDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "endDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          }
        ],
        "operationId": "alhs2defvalaladvStatsController.getaladvHistory"
      }
    },
    "/alhs2/defval/aladv/stats/report": {
      "get": {
        "x-controller-name": "alhs2defvalaladvStatsController",
        "x-operation-name": "reportStatisticsGet",
        "tags": [
          "alhs2defvalaladvStatsController"
        ],
        "responses": {
          "200": {
            "description": "Statistics reported successfully",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "properties": {
                    "success": {
                      "type": "boolean"
                    },
                    "message": {
                      "type": "string"
                    },
                    "action": {
                      "type": "string"
                    }
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "customer",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "reportDate",
            "in": "query",
            "schema": {
              "type": "string"
            }
          },
          {
            "name": "awsOriginated",
            "in": "query",
            "schema": {
              "type": "number"
            }
          },
          {
            "name": "partnerOriginated",
            "in": "query",
            "schema": {
              "type": "number"
            }
          }
        ],
        "operationId": "alhs2defvalaladvStatsController.reportStatisticsGet"
      }
    },
    "/alhs2/defval/aladv/us-states/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvUsStatesController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvUsStatesController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvUsStates count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUsStates.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvUsStates.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvUsStates>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvUsStatesController.count"
      }
    },
    "/alhs2/defval/aladv/us-states/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvUsStatesController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvUsStatesController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvUsStates instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUsStatesWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUsStates.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvUsStatesController.findById"
      }
    },
    "/alhs2/defval/aladv/us-states": {
      "get": {
        "x-controller-name": "alhs2defvalaladvUsStatesController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvUsStatesController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvUsStates instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvUsStatesWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUsStates.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvUsStatesController.find"
      }
    },
    "/alhs2/defval/aladv/use-cases/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvUseCaseController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvUseCaseController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvUseCase count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUseCase.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvUseCase.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvUseCase>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvUseCaseController.count"
      }
    },
    "/alhs2/defval/aladv/use-cases/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvUseCaseController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvUseCaseController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvUseCase instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUseCaseWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUseCase.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvUseCaseController.findById"
      }
    },
    "/alhs2/defval/aladv/use-cases": {
      "get": {
        "x-controller-name": "alhs2defvalaladvUseCaseController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvUseCaseController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvUseCase instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvUseCaseWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUseCase.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvUseCaseController.find"
      }
    },
    "/alhs2/defval/aladv/user-credentials/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvUserCredentialsController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvUserCredentialsController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvUserCredentials count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUserCredentials.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvUserCredentials.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvUserCredentials>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvUserCredentialsController.count"
      }
    },
    "/alhs2/defval/aladv/user-credentials/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvUserCredentialsController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvUserCredentialsController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvUserCredentials instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUserCredentialsWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUserCredentials.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvUserCredentialsController.findById"
      }
    },
    "/alhs2/defval/aladv/user-credentials": {
      "get": {
        "x-controller-name": "alhs2defvalaladvUserCredentialsController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvUserCredentialsController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvUserCredentials instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvUserCredentialsWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUserCredentials.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvUserCredentialsController.find"
      }
    },
    "/alhs2/defval/aladv/users/count": {
      "get": {
        "x-controller-name": "alhs2defvalaladvUserController",
        "x-operation-name": "count",
        "tags": [
          "alhs2defvalaladvUserController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvUser count",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvloopback.Count"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUser.Filter"
                }
              }
            }
          },
          {
            "name": "where",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "type": "object",
                  "title": "alhs2defvalaladvUser.WhereFilter",
                  "additionalProperties": true,
                  "x-typescript-type": "@loopback/repository#Where<alhs2defvalaladvUser>"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvUserController.count"
      }
    },
    "/alhs2/defval/aladv/users/{id}": {
      "get": {
        "x-controller-name": "alhs2defvalaladvUserController",
        "x-operation-name": "findById",
        "tags": [
          "alhs2defvalaladvUserController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalaladvUser instance",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUserWithRelations"
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "id",
            "in": "path",
            "schema": {
              "x-precision": 10,
              "x-scale": 0,
              "x-generated": 1,
              "x-primary-key": true,
              "type": "number",
              "nullable": false
            },
            "required": true
          },
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUser.Filter1"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvUserController.findById"
      }
    },
    "/alhs2/defval/aladv/users": {
      "get": {
        "x-controller-name": "alhs2defvalaladvUserController",
        "x-operation-name": "find",
        "tags": [
          "alhs2defvalaladvUserController"
        ],
        "responses": {
          "200": {
            "description": "Array of alhs2defvalaladvUser instances",
            "content": {
              "application/json": {
                "schema": {
                  "type": "array",
                  "items": {
                    "$ref": "#/components/schemas/alhs2defvalaladvUserWithRelations"
                  }
                }
              }
            }
          }
        },
        "parameters": [
          {
            "name": "filter",
            "in": "query",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalaladvUser.Filter2"
                }
              }
            }
          }
        ],
        "operationId": "alhs2defvalaladvUserController.find"
      }
    },
    "/alhs2/defval/aladv/whoAmI": {
      "get": {
        "x-controller-name": "alhs2defvalaladvGrappleAuthController",
        "x-operation-name": "whoAmI",
        "tags": [
          "alhs2defvalaladvGrappleAuthController"
        ],
        "x-auth-controller": true,
        "responses": {
          "200": {
            "description": "Return current user",
            "content": {
              "application/json": {
                "schema": {
                  "type": "string"
                }
              }
            }
          }
        },
        "operationId": "alhs2defvalaladvGrappleAuthController.whoAmI"
      }
    },
    "/alhs2/defval/ping": {
      "get": {
        "x-controller-name": "alhs2defvalPingController",
        "x-operation-name": "ping",
        "tags": [
          "alhs2defvalPingController"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalPing Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalPingResponse"
                }
              }
            }
          }
        },
        "operationId": "alhs2defvalPingController.ping"
      }
    },
    "/alhs2/defval/ping2": {
      "get": {
        "x-controller-name": "alhs2defvalPing2Controller",
        "x-operation-name": "ping2",
        "tags": [
          "alhs2defvalPing2Controller"
        ],
        "responses": {
          "200": {
            "description": "alhs2defvalPing2 Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2defvalPing2Response"
                }
              }
            }
          }
        },
        "operationId": "alhs2defvalPing2Controller.ping2"
      }
    },
    "/alhs2/ping": {
      "get": {
        "x-controller-name": "alhs2PingController",
        "x-operation-name": "ping",
        "tags": [
          "alhs2PingController"
        ],
        "responses": {
          "200": {
            "description": "alhs2Ping Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2PingResponse"
                }
              }
            }
          }
        },
        "operationId": "alhs2PingController.ping"
      }
    },
    "/alhs2/ping2": {
      "get": {
        "x-controller-name": "alhs2Ping2Controller",
        "x-operation-name": "ping2",
        "tags": [
          "alhs2Ping2Controller"
        ],
        "responses": {
          "200": {
            "description": "alhs2Ping2 Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/alhs2Ping2Response"
                }
              }
            }
          }
        },
        "operationId": "alhs2Ping2Controller.ping2"
      }
    },
    "/mcp/messages": {
      "post": {
        "x-controller-name": "McpController",
        "x-operation-name": "handleMcpMessages",
        "tags": [
          "McpController"
        ],
        "x-mcp-controller": true,
        "responses": {
          "200": {
            "description": "Return value of McpController.handleMcpMessages"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "McpController.handleMcpMessages"
      }
    },
    "/mcp/sse": {
      "post": {
        "x-controller-name": "McpController",
        "x-operation-name": "handleMcpSsePost",
        "tags": [
          "McpController"
        ],
        "x-mcp-controller": true,
        "responses": {
          "200": {
            "description": "Return value of McpController.handleMcpSsePost"
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "McpController.handleMcpSsePost"
      },
      "get": {
        "x-controller-name": "McpController",
        "x-operation-name": "mcpSse",
        "tags": [
          "McpController"
        ],
        "x-mcp-controller": true,
        "responses": {
          "200": {
            "description": "Return value of McpController.mcpSse"
          }
        },
        "operationId": "McpController.mcpSse"
      }
    },
    "/mcp": {
      "post": {
        "x-controller-name": "McpController",
        "x-operation-name": "handleMcpLegacy",
        "tags": [
          "McpController"
        ],
        "x-mcp-controller": true,
        "responses": {
          "200": {
            "description": "MCP Streamable HTTP + Legacy Synchronous Endpoint",
            "content": {
              "text/event-stream": {
                "schema": {
                  "type": "string"
                }
              },
              "application/json": {
                "schema": {
                  "type": "object"
                }
              }
            }
          }
        },
        "requestBody": {
          "content": {
            "application/json": {
              "schema": {
                "type": "object"
              }
            }
          }
        },
        "operationId": "McpController.handleMcpLegacy"
      }
    },
    "/ping": {
      "get": {
        "x-controller-name": "PingController",
        "x-operation-name": "ping",
        "tags": [
          "PingController"
        ],
        "responses": {
          "200": {
            "description": "Ping Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/PingResponse"
                }
              }
            }
          }
        },
        "operationId": "PingController.ping"
      }
    },
    "/ping3": {
      "get": {
        "x-controller-name": "Ping3Controller",
        "x-operation-name": "ping3",
        "tags": [
          "Ping3Controller"
        ],
        "responses": {
          "200": {
            "description": "Ping3 Response",
            "content": {
              "application/json": {
                "schema": {
                  "$ref": "#/components/schemas/Ping3Response"
                }
              }
            }
          }
        },
        "operationId": "Ping3Controller.ping3"
      }
    }
  },
  "servers": [
    {
      "url": "https://alhs-pr-425-alhs-grasmcp-grapi.nop.grpl.io"
    }
  ],
  "components": {
    "schemas": {
      "alhs2defvalaladvUser": {
        "title": "alhs2defvalaladvUser",
        "type": "object",
        "description": "alhs2defvalaladv{\"indexInfo\":{\"email\":{\"unique\":true},\"username\":{\"username\":{\"unique\":true}}}}",
        "properties": {
          "email": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "emailVerified": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "username": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "verificationToken": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true
      },
      "alhs2defvalaladvNewUser": {
        "title": "alhs2defvalaladvNewUser",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvUser, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewUser', exclude: [ 'id' ] }), , {\"indexInfo\":{\"email\":{\"unique\":true},\"username\":{\"username\":{\"unique\":true}}}}",
        "properties": {
          "email": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "emailVerified": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "username": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "verificationToken": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvUser, 'id'>"
      },
      "alhs2defvalaladvNewUserRequest": {
        "title": "alhs2defvalaladvNewUserRequest",
        "type": "object",
        "properties": {
          "id": {
            "x-generated": false,
            "x-primary-key": true,
            "type": "string"
          },
          "realm": {
            "x-primary-key": false,
            "type": "string"
          },
          "username": {
            "x-primary-key": false,
            "type": "string"
          },
          "email": {
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string"
          },
          "emailVerified": {
            "x-primary-key": false,
            "type": "boolean"
          },
          "verificationToken": {
            "x-primary-key": false,
            "type": "string"
          },
          "password": {
            "x-primary-key": false,
            "type": "string"
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"email\":{\"unique\":true}}}",
        "required": [
          "email",
          "password"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvUserWithRelations": {
        "title": "alhs2defvalaladvUserWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvUserWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), , {\"indexInfo\":{\"email\":{\"unique\":true},\"username\":{\"username\":{\"unique\":true}}}}",
        "properties": {
          "email": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "emailVerified": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "username": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "verificationToken": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvUserWithRelations, >"
      },
      "alhs2defvalaladvUserPartial": {
        "title": "alhs2defvalaladvUserPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvUser>, schemaOptions: { partial: true }), , {\"indexInfo\":{\"email\":{\"unique\":true},\"username\":{\"username\":{\"unique\":true}}}}",
        "properties": {
          "email": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "emailVerified": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "username": {
            "x-length": 45,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "verificationToken": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvUser>"
      },
      "alhs2defvalaladvUserCredentials": {
        "title": "alhs2defvalaladvUserCredentials",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "password": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "userId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true
      },
      "alhs2defvalaladvUserCredentialsWithRelations": {
        "title": "alhs2defvalaladvUserCredentialsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvUserCredentialsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "password": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "userId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvUserCredentialsWithRelations, >"
      },
      "alhs2defvalaladvNewUserCredentials": {
        "title": "alhs2defvalaladvNewUserCredentials",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvUserCredentials, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewUserCredentials', exclude: [ 'id' ] })",
        "properties": {
          "password": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "userId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvUserCredentials, 'id'>"
      },
      "alhs2defvalaladvUserCredentialsPartial": {
        "title": "alhs2defvalaladvUserCredentialsPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvUserCredentials>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "password": {
            "x-length": 256,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "userId": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvUserCredentials>"
      },
      "alhs2defvalaladvUseCase": {
        "title": "alhs2defvalaladvUseCase",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvUseCaseWithRelations": {
        "title": "alhs2defvalaladvUseCaseWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvUseCaseWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvUseCaseWithRelations, >"
      },
      "alhs2defvalaladvNewUseCase": {
        "title": "alhs2defvalaladvNewUseCase",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvUseCase, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewUseCase', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvUseCase, 'id'>"
      },
      "alhs2defvalaladvUseCasePartial": {
        "title": "alhs2defvalaladvUseCasePartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvUseCase>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvUseCase>"
      },
      "alhs2defvalaladvUsStates": {
        "title": "alhs2defvalaladvUsStates",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvUsStatesWithRelations": {
        "title": "alhs2defvalaladvUsStatesWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvUsStatesWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvUsStatesWithRelations, >"
      },
      "alhs2defvalaladvNewUsStates": {
        "title": "alhs2defvalaladvNewUsStates",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvUsStates, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewUsStates', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvUsStates, 'id'>"
      },
      "alhs2defvalaladvUsStatesPartial": {
        "title": "alhs2defvalaladvUsStatesPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvUsStates>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvUsStates>"
      },
      "alhs2defvalaladvStateProvince": {
        "title": "alhs2defvalaladvStateProvince",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvStateProvinceWithRelations": {
        "title": "alhs2defvalaladvStateProvinceWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvStateProvinceWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvStateProvinceWithRelations, >"
      },
      "alhs2defvalaladvNewStateProvince": {
        "title": "alhs2defvalaladvNewStateProvince",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvStateProvince, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewStateProvince', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvStateProvince, 'id'>"
      },
      "alhs2defvalaladvStateProvincePartial": {
        "title": "alhs2defvalaladvStateProvincePartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvStateProvince>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvStateProvince>"
      },
      "alhs2defvalaladvStage": {
        "title": "alhs2defvalaladvStage",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "isDefault": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvStageWithRelations": {
        "title": "alhs2defvalaladvStageWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvStageWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "isDefault": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvStageWithRelations, >"
      },
      "alhs2defvalaladvNewStage": {
        "title": "alhs2defvalaladvNewStage",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvStage, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewStage', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "isDefault": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvStage, 'id'>"
      },
      "alhs2defvalaladvStagePartial": {
        "title": "alhs2defvalaladvStagePartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvStage>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "isDefault": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvStage>"
      },
      "alhs2defvalaladvSalesActivities": {
        "title": "alhs2defvalaladvSalesActivities",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvSalesActivitiesWithRelations": {
        "title": "alhs2defvalaladvSalesActivitiesWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvSalesActivitiesWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvSalesActivitiesWithRelations, >"
      },
      "alhs2defvalaladvNewSalesActivities": {
        "title": "alhs2defvalaladvNewSalesActivities",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvSalesActivities, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewSalesActivities', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvSalesActivities, 'id'>"
      },
      "alhs2defvalaladvSalesActivitiesPartial": {
        "title": "alhs2defvalaladvSalesActivitiesPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvSalesActivities>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvSalesActivities>"
      },
      "alhs2defvalaladvReviewStatus": {
        "title": "alhs2defvalaladvReviewStatus",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvReviewStatusWithRelations": {
        "title": "alhs2defvalaladvReviewStatusWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvReviewStatusWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvReviewStatusWithRelations, >"
      },
      "alhs2defvalaladvNewReviewStatus": {
        "title": "alhs2defvalaladvNewReviewStatus",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvReviewStatus, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewReviewStatus', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvReviewStatus, 'id'>"
      },
      "alhs2defvalaladvReviewStatusPartial": {
        "title": "alhs2defvalaladvReviewStatusPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvReviewStatus>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvReviewStatus>"
      },
      "alhs2defvalaladvPostalCode": {
        "title": "alhs2defvalaladvPostalCode",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvPostalCodeWithRelations": {
        "title": "alhs2defvalaladvPostalCodeWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvPostalCodeWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvPostalCodeWithRelations, >"
      },
      "alhs2defvalaladvNewPostalCode": {
        "title": "alhs2defvalaladvNewPostalCode",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvPostalCode, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewPostalCode', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvPostalCode, 'id'>"
      },
      "alhs2defvalaladvPostalCodePartial": {
        "title": "alhs2defvalaladvPostalCodePartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvPostalCode>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvPostalCode>"
      },
      "alhs2defvalaladvPartnerPrimaryNeed": {
        "title": "alhs2defvalaladvPartnerPrimaryNeed",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvPartnerPrimaryNeedWithRelations": {
        "title": "alhs2defvalaladvPartnerPrimaryNeedWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvPartnerPrimaryNeedWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvPartnerPrimaryNeedWithRelations, >"
      },
      "alhs2defvalaladvNewPartnerPrimaryNeed": {
        "title": "alhs2defvalaladvNewPartnerPrimaryNeed",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvPartnerPrimaryNeed, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewPartnerPrimaryNeed', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvPartnerPrimaryNeed, 'id'>"
      },
      "alhs2defvalaladvPartnerPrimaryNeedPartial": {
        "title": "alhs2defvalaladvPartnerPrimaryNeedPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvPartnerPrimaryNeed>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvPartnerPrimaryNeed>"
      },
      "alhs2defvalaladvOpportunityType": {
        "title": "alhs2defvalaladvOpportunityType",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvOpportunityTypeWithRelations": {
        "title": "alhs2defvalaladvOpportunityTypeWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvOpportunityTypeWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvOpportunityTypeWithRelations, >"
      },
      "alhs2defvalaladvNewOpportunityType": {
        "title": "alhs2defvalaladvNewOpportunityType",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvOpportunityType, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewOpportunityType', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvOpportunityType, 'id'>"
      },
      "alhs2defvalaladvOpportunityTypePartial": {
        "title": "alhs2defvalaladvOpportunityTypePartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvOpportunityType>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvOpportunityType>"
      },
      "alhs2defvalaladvOpportunityStatistics": {
        "title": "alhs2defvalaladvOpportunityStatistics",
        "type": "object",
        "properties": {
          "awsOriginated": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "customer": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "partnerOriginated": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "reportDate": {
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"customer\":{\"unique\":true},\"reportDate\":{\"reportDate\":{\"unique\":true}}}}",
        "required": [
          "customer",
          "reportDate"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvOpportunityStatisticsWithRelations": {
        "title": "alhs2defvalaladvOpportunityStatisticsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvOpportunityStatisticsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), , {\"indexInfo\":{\"customer\":{\"unique\":true},\"reportDate\":{\"reportDate\":{\"unique\":true}}}}",
        "properties": {
          "awsOriginated": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "customer": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "partnerOriginated": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "reportDate": {
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "customer",
          "reportDate"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvOpportunityStatisticsWithRelations, >"
      },
      "alhs2defvalaladvNewOpportunityStatistics": {
        "title": "alhs2defvalaladvNewOpportunityStatistics",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvOpportunityStatistics, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewOpportunityStatistics', exclude: [ 'id' ] }), , {\"indexInfo\":{\"customer\":{\"unique\":true},\"reportDate\":{\"reportDate\":{\"unique\":true}}}}",
        "properties": {
          "awsOriginated": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "customer": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "partnerOriginated": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "reportDate": {
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "customer",
          "reportDate"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvOpportunityStatistics, 'id'>"
      },
      "alhs2defvalaladvOpportunityStatisticsPartial": {
        "title": "alhs2defvalaladvOpportunityStatisticsPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvOpportunityStatistics>, schemaOptions: { partial: true }), , {\"indexInfo\":{\"customer\":{\"unique\":true},\"reportDate\":{\"reportDate\":{\"unique\":true}}}}",
        "properties": {
          "awsOriginated": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "customer": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "partnerOriginated": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "reportDate": {
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvOpportunityStatistics>"
      },
      "alhs2defvalaladvMarketingActivityUseCase": {
        "title": "alhs2defvalaladvMarketingActivityUseCase",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvMarketingActivityUseCaseWithRelations": {
        "title": "alhs2defvalaladvMarketingActivityUseCaseWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvMarketingActivityUseCaseWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvMarketingActivityUseCaseWithRelations, >"
      },
      "alhs2defvalaladvNewMarketingActivityUseCase": {
        "title": "alhs2defvalaladvNewMarketingActivityUseCase",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvMarketingActivityUseCase, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewMarketingActivityUseCase', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvMarketingActivityUseCase, 'id'>"
      },
      "alhs2defvalaladvMarketingActivityUseCasePartial": {
        "title": "alhs2defvalaladvMarketingActivityUseCasePartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvMarketingActivityUseCase>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvMarketingActivityUseCase>"
      },
      "alhs2defvalaladvMarketingActivityChannel": {
        "title": "alhs2defvalaladvMarketingActivityChannel",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvMarketingActivityChannelWithRelations": {
        "title": "alhs2defvalaladvMarketingActivityChannelWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvMarketingActivityChannelWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvMarketingActivityChannelWithRelations, >"
      },
      "alhs2defvalaladvNewMarketingActivityChannel": {
        "title": "alhs2defvalaladvNewMarketingActivityChannel",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvMarketingActivityChannel, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewMarketingActivityChannel', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvMarketingActivityChannel, 'id'>"
      },
      "alhs2defvalaladvMarketingActivityChannelPartial": {
        "title": "alhs2defvalaladvMarketingActivityChannelPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvMarketingActivityChannel>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvMarketingActivityChannel>"
      },
      "alhs2defvalaladvIndustryVertical": {
        "title": "alhs2defvalaladvIndustryVertical",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvIndustryVerticalWithRelations": {
        "title": "alhs2defvalaladvIndustryVerticalWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvIndustryVerticalWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvIndustryVerticalWithRelations, >"
      },
      "alhs2defvalaladvNewIndustryVertical": {
        "title": "alhs2defvalaladvNewIndustryVertical",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvIndustryVertical, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewIndustryVertical', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvIndustryVertical, 'id'>"
      },
      "alhs2defvalaladvIndustryVerticalPartial": {
        "title": "alhs2defvalaladvIndustryVerticalPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvIndustryVertical>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvIndustryVertical>"
      },
      "alhs2defvalaladvHubspotDealPropertiesV2": {
        "title": "alhs2defvalaladvHubspotDealPropertiesV2",
        "type": "object",
        "properties": {
          "calculated": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "formField": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "label": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "multiSelect": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "options": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "type": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name",
          "type"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvHubspotDealPropertiesV2WithRelations": {
        "title": "alhs2defvalaladvHubspotDealPropertiesV2WithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvHubspotDealPropertiesV2WithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "calculated": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "formField": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "label": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "multiSelect": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "options": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "type": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "name",
          "type"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvHubspotDealPropertiesV2WithRelations, >"
      },
      "alhs2defvalaladvNewHubspotDealPropertiesV2": {
        "title": "alhs2defvalaladvNewHubspotDealPropertiesV2",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvHubspotDealPropertiesV2, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewHubspotDealPropertiesV2', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "calculated": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "formField": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "label": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "multiSelect": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "options": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "type": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "name",
          "type"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvHubspotDealPropertiesV2, 'id'>"
      },
      "alhs2defvalaladvHubspotDealPropertiesV2Partial": {
        "title": "alhs2defvalaladvHubspotDealPropertiesV2Partial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvHubspotDealPropertiesV2>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "calculated": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "formField": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "label": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "multiSelect": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "options": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "type": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvHubspotDealPropertiesV2>"
      },
      "alhs2defvalaladvHubspotCompanyProperties": {
        "title": "alhs2defvalaladvHubspotCompanyProperties",
        "type": "object",
        "properties": {
          "calculated": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "formField": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "label": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "multiSelect": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "options": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "type": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name",
          "type"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvHubspotCompanyPropertiesWithRelations": {
        "title": "alhs2defvalaladvHubspotCompanyPropertiesWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvHubspotCompanyPropertiesWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "calculated": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "formField": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "label": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "multiSelect": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "options": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "type": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "name",
          "type"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvHubspotCompanyPropertiesWithRelations, >"
      },
      "alhs2defvalaladvNewHubspotCompanyProperties": {
        "title": "alhs2defvalaladvNewHubspotCompanyProperties",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvHubspotCompanyProperties, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewHubspotCompanyProperties', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "calculated": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "formField": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "label": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "multiSelect": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "options": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "type": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "name",
          "type"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvHubspotCompanyProperties, 'id'>"
      },
      "alhs2defvalaladvHubspotCompanyPropertiesPartial": {
        "title": "alhs2defvalaladvHubspotCompanyPropertiesPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvHubspotCompanyProperties>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "calculated": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "formField": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "label": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "multiSelect": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "options": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": true
          },
          "type": {
            "x-length": 50,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvHubspotCompanyProperties>"
      },
      "alhs2defvalaladvDuration": {
        "title": "alhs2defvalaladvDuration",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "value": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "number",
            "nullable": false
          }
        },
        "required": [
          "name",
          "value"
        ],
        "description": "alhs2defvalaladv{\"indexInfo\":{\"value\":{\"unique\":true}}}",
        "additionalProperties": true
      },
      "alhs2defvalaladvDurationWithRelations": {
        "title": "alhs2defvalaladvDurationWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvDurationWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"value\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "value": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "number",
            "nullable": false
          }
        },
        "required": [
          "name",
          "value"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvDurationWithRelations, >"
      },
      "alhs2defvalaladvNewDuration": {
        "title": "alhs2defvalaladvNewDuration",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvDuration, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewDuration', exclude: [ 'id' ] }), {\"indexInfo\":{\"value\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "value": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "number",
            "nullable": false
          }
        },
        "required": [
          "name",
          "value"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvDuration, 'id'>"
      },
      "alhs2defvalaladvDurationPartial": {
        "title": "alhs2defvalaladvDurationPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvDuration>, schemaOptions: { partial: true }), {\"indexInfo\":{\"value\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "value": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "number",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvDuration>"
      },
      "alhs2defvalaladvDeliveryModel": {
        "title": "alhs2defvalaladvDeliveryModel",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvDeliveryModelWithRelations": {
        "title": "alhs2defvalaladvDeliveryModelWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvDeliveryModelWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvDeliveryModelWithRelations, >"
      },
      "alhs2defvalaladvNewDeliveryModel": {
        "title": "alhs2defvalaladvNewDeliveryModel",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvDeliveryModel, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewDeliveryModel', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvDeliveryModel, 'id'>"
      },
      "alhs2defvalaladvDeliveryModelPartial": {
        "title": "alhs2defvalaladvDeliveryModelPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvDeliveryModel>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvDeliveryModel>"
      },
      "alhs2defvalaladvCronConfig": {
        "title": "alhs2defvalaladvCronConfig",
        "type": "object",
        "properties": {
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "enabled": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "schedule": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "timezone": {
            "x-length": 64,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name",
          "schedule"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvCronConfigWithRelations": {
        "title": "alhs2defvalaladvCronConfigWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvCronConfigWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "enabled": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "schedule": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "timezone": {
            "x-length": 64,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "name",
          "schedule"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvCronConfigWithRelations, >"
      },
      "alhs2defvalaladvNewCronConfig": {
        "title": "alhs2defvalaladvNewCronConfig",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvCronConfig, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewCronConfig', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "enabled": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "schedule": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "timezone": {
            "x-length": 64,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "name",
          "schedule"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvCronConfig, 'id'>"
      },
      "alhs2defvalaladvCronConfigPartial": {
        "title": "alhs2defvalaladvCronConfigPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvCronConfig>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "enabled": {
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "schedule": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "timezone": {
            "x-length": 64,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvCronConfig>"
      },
      "alhs2defvalaladvCountry": {
        "title": "alhs2defvalaladvCountry",
        "type": "object",
        "description": "alhs2defvalaladv{\"indexInfo\":{\"countryCode\":{\"unique\":true},\"name\":{\"name\":{\"unique\":true}}}}",
        "properties": {
          "countryCode": {
            "x-length": 2,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "countryCode",
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvCountryWithRelations": {
        "title": "alhs2defvalaladvCountryWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvCountryWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), , {\"indexInfo\":{\"countryCode\":{\"unique\":true},\"name\":{\"name\":{\"unique\":true}}}}",
        "properties": {
          "countryCode": {
            "x-length": 2,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "countryCode",
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvCountryWithRelations, >"
      },
      "alhs2defvalaladvNewCountry": {
        "title": "alhs2defvalaladvNewCountry",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvCountry, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewCountry', exclude: [ 'id' ] }), , {\"indexInfo\":{\"countryCode\":{\"unique\":true},\"name\":{\"name\":{\"unique\":true}}}}",
        "properties": {
          "countryCode": {
            "x-length": 2,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "countryCode",
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvCountry, 'id'>"
      },
      "alhs2defvalaladvCountryPartial": {
        "title": "alhs2defvalaladvCountryPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvCountry>, schemaOptions: { partial: true }), , {\"indexInfo\":{\"countryCode\":{\"unique\":true},\"name\":{\"name\":{\"unique\":true}}}}",
        "properties": {
          "countryCode": {
            "x-length": 2,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvCountry>"
      },
      "alhs2defvalaladvCompetitiveTracking": {
        "title": "alhs2defvalaladvCompetitiveTracking",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvCompetitiveTrackingWithRelations": {
        "title": "alhs2defvalaladvCompetitiveTrackingWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvCompetitiveTrackingWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvCompetitiveTrackingWithRelations, >"
      },
      "alhs2defvalaladvNewCompetitiveTracking": {
        "title": "alhs2defvalaladvNewCompetitiveTracking",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvCompetitiveTracking, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewCompetitiveTracking', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvCompetitiveTracking, 'id'>"
      },
      "alhs2defvalaladvCompetitiveTrackingPartial": {
        "title": "alhs2defvalaladvCompetitiveTrackingPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvCompetitiveTracking>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvCompetitiveTracking>"
      },
      "alhs2defvalaladvClosedLostReason": {
        "title": "alhs2defvalaladvClosedLostReason",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvClosedLostReasonWithRelations": {
        "title": "alhs2defvalaladvClosedLostReasonWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvClosedLostReasonWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvClosedLostReasonWithRelations, >"
      },
      "alhs2defvalaladvNewClosedLostReason": {
        "title": "alhs2defvalaladvNewClosedLostReason",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvClosedLostReason, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewClosedLostReason', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvClosedLostReason, 'id'>"
      },
      "alhs2defvalaladvClosedLostReasonPartial": {
        "title": "alhs2defvalaladvClosedLostReasonPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvClosedLostReason>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvClosedLostReason>"
      },
      "alhs2defvalaladvBusinessRules": {
        "title": "alhs2defvalaladvBusinessRules",
        "type": "object",
        "properties": {
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "ruleJson": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": false
          },
          "status": {
            "x-length": 20,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "version": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "name",
          "ruleJson"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvBusinessRulesWithRelations": {
        "title": "alhs2defvalaladvBusinessRulesWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvBusinessRulesWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "ruleJson": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": false
          },
          "status": {
            "x-length": 20,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "version": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "name",
          "ruleJson"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvBusinessRulesWithRelations, >"
      },
      "alhs2defvalaladvNewBusinessRules": {
        "title": "alhs2defvalaladvNewBusinessRules",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvBusinessRules, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewBusinessRules', exclude: [ 'id' ] })",
        "properties": {
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "ruleJson": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": false
          },
          "status": {
            "x-length": 20,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "version": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "required": [
          "name",
          "ruleJson"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvBusinessRules, 'id'>"
      },
      "alhs2defvalaladvBusinessRulesPartial": {
        "title": "alhs2defvalaladvBusinessRulesPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvBusinessRules>, schemaOptions: { partial: true })",
        "properties": {
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "ruleJson": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "object",
            "nullable": false
          },
          "status": {
            "x-length": 20,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "version": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": false,
            "x-primary-key": false,
            "type": "number",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvBusinessRules>"
      },
      "alhs2defvalaladvAwsProducts": {
        "title": "alhs2defvalaladvAwsProducts",
        "type": "object",
        "properties": {
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "family": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "identifier": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "name": {
            "x-length": 500,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "family",
          "identifier",
          "name"
        ],
        "description": "alhs2defvalaladv{\"indexInfo\":{\"identifier\":{\"unique\":true}}}",
        "additionalProperties": true
      },
      "alhs2defvalaladvAwsProductsWithRelations": {
        "title": "alhs2defvalaladvAwsProductsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvAwsProductsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"identifier\":{\"unique\":true}}}",
        "properties": {
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "family": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "identifier": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "name": {
            "x-length": 500,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "family",
          "identifier",
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvAwsProductsWithRelations, >"
      },
      "alhs2defvalaladvNewAwsProducts": {
        "title": "alhs2defvalaladvNewAwsProducts",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvAwsProducts, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewAwsProducts', exclude: [ 'id' ] }), {\"indexInfo\":{\"identifier\":{\"unique\":true}}}",
        "properties": {
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "family": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "identifier": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "name": {
            "x-length": 500,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "required": [
          "family",
          "identifier",
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvAwsProducts, 'id'>"
      },
      "alhs2defvalaladvAwsProductsPartial": {
        "title": "alhs2defvalaladvAwsProductsPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvAwsProducts>, schemaOptions: { partial: true }), {\"indexInfo\":{\"identifier\":{\"unique\":true}}}",
        "properties": {
          "createdAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          },
          "description": {
            "x-length": 65535,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": true
          },
          "family": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "identifier": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "name": {
            "x-length": 500,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "updatedAt": {
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "format": "date-time",
            "nullable": true
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvAwsProducts>"
      },
      "alhs2defvalaladvApnPrograms": {
        "title": "alhs2defvalaladvApnPrograms",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "required": [
          "name"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvApnProgramsWithRelations": {
        "title": "alhs2defvalaladvApnProgramsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvApnProgramsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvApnProgramsWithRelations, >"
      },
      "alhs2defvalaladvNewApnPrograms": {
        "title": "alhs2defvalaladvNewApnPrograms",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvApnPrograms, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewApnPrograms', exclude: [ 'id' ] }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvApnPrograms, 'id'>"
      },
      "alhs2defvalaladvApnProgramsPartial": {
        "title": "alhs2defvalaladvApnProgramsPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvApnPrograms>, schemaOptions: { partial: true }), {\"indexInfo\":{\"name\":{\"unique\":true}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvApnPrograms>"
      },
      "alhs2defvalaladvAiProvider": {
        "title": "alhs2defvalaladvAiProvider",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "value": {
            "x-length": 100,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "description": "alhs2defvalaladv{\"indexInfo\":{\"name\":{\"unique\":true},\"value\":{\"value\":{\"unique\":true}}}}",
        "required": [
          "name",
          "value"
        ],
        "additionalProperties": true
      },
      "alhs2defvalaladvAiProviderWithRelations": {
        "title": "alhs2defvalaladvAiProviderWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvAiProviderWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), , {\"indexInfo\":{\"name\":{\"unique\":true},\"value\":{\"value\":{\"unique\":true}}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "value": {
            "x-length": 100,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name",
          "value"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvAiProviderWithRelations, >"
      },
      "alhs2defvalaladvNewAiProvider": {
        "title": "alhs2defvalaladvNewAiProvider",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvAiProvider, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewAiProvider', exclude: [ 'id' ] }), , {\"indexInfo\":{\"name\":{\"unique\":true},\"value\":{\"value\":{\"unique\":true}}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "value": {
            "x-length": 100,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name",
          "value"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvAiProvider, 'id'>"
      },
      "alhs2defvalaladvAiProviderPartial": {
        "title": "alhs2defvalaladvAiProviderPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvAiProvider>, schemaOptions: { partial: true }), , {\"indexInfo\":{\"name\":{\"unique\":true},\"value\":{\"value\":{\"unique\":true}}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "value": {
            "x-length": 100,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvAiProvider>"
      },
      "alhs2defvalaladvAiModel": {
        "title": "alhs2defvalaladvAiModel",
        "type": "object",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "provider": {
            "x-length": 100,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "value": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name",
          "provider",
          "value"
        ],
        "description": "alhs2defvalaladv{\"indexInfo\":{\"provider\":{\"unique\":true},\"value\":{\"value\":{\"unique\":true}}}}",
        "additionalProperties": true
      },
      "alhs2defvalaladvAiModelWithRelations": {
        "title": "alhs2defvalaladvAiModelWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvAiModelWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), , {\"indexInfo\":{\"provider\":{\"unique\":true},\"value\":{\"value\":{\"unique\":true}}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "provider": {
            "x-length": 100,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "value": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name",
          "provider",
          "value"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvAiModelWithRelations, >"
      },
      "alhs2defvalaladvNewAiModel": {
        "title": "alhs2defvalaladvNewAiModel",
        "type": "object",
        "description": "(tsType: Omit<alhs2defvalaladvAiModel, 'id'>, schemaOptions: { title: 'alhs2defvalaladvNewAiModel', exclude: [ 'id' ] }), , {\"indexInfo\":{\"provider\":{\"unique\":true},\"value\":{\"value\":{\"unique\":true}}}}",
        "properties": {
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "provider": {
            "x-length": 100,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "value": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "required": [
          "name",
          "provider",
          "value"
        ],
        "additionalProperties": true,
        "x-typescript-type": "Omit<alhs2defvalaladvAiModel, 'id'>"
      },
      "alhs2defvalaladvAiModelPartial": {
        "title": "alhs2defvalaladvAiModelPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs2defvalaladvAiModel>, schemaOptions: { partial: true }), , {\"indexInfo\":{\"provider\":{\"unique\":true},\"value\":{\"value\":{\"unique\":true}}}}",
        "properties": {
          "id": {
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1,
            "x-primary-key": true,
            "type": "number",
            "nullable": false
          },
          "name": {
            "x-length": 255,
            "x-generated": false,
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "provider": {
            "x-length": 100,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          },
          "value": {
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            },
            "x-primary-key": false,
            "type": "string",
            "nullable": false
          }
        },
        "additionalProperties": true,
        "x-typescript-type": "Partial<alhs2defvalaladvAiModel>"
      },
      "alhs2defvalaladvloopback.Count": {
        "type": "object",
        "title": "alhs2defvalaladvloopback.Count",
        "x-typescript-type": "@loopback/repository#Count",
        "properties": {
          "count": {
            "type": "number"
          }
        }
      },
      "alhs2defvalaladvAiModel.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvAiModel.Filter",
        "properties": {
          "where": {
            "title": "AiModel.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvAiModel>"
      },
      "alhs2defvalaladvAiModel.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvAiModel.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"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "provider": {
                    "type": "boolean"
                  },
                  "value": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AiModel.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvAiModel>"
      },
      "alhs2defvalaladvAiModel.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvAiModel.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": "AiModel.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "provider": {
                    "type": "boolean"
                  },
                  "value": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AiModel.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvAiModel>"
      },
      "alhs2defvalaladvAiProvider.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvAiProvider.Filter",
        "properties": {
          "where": {
            "title": "AiProvider.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvAiProvider>"
      },
      "alhs2defvalaladvAiProvider.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvAiProvider.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"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "value": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AiProvider.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvAiProvider>"
      },
      "alhs2defvalaladvAiProvider.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvAiProvider.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": "AiProvider.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "value": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AiProvider.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvAiProvider>"
      },
      "alhs2defvalaladvApnPrograms.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvApnPrograms.Filter",
        "properties": {
          "where": {
            "title": "ApnPrograms.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvApnPrograms>"
      },
      "alhs2defvalaladvApnPrograms.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvApnPrograms.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "ApnPrograms.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvApnPrograms>"
      },
      "alhs2defvalaladvApnPrograms.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvApnPrograms.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": "ApnPrograms.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "ApnPrograms.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvApnPrograms>"
      },
      "alhs2defvalaladvAwsProducts.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvAwsProducts.Filter",
        "properties": {
          "where": {
            "title": "AwsProducts.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvAwsProducts>"
      },
      "alhs2defvalaladvAwsProducts.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvAwsProducts.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": {
                  "createdAt": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "family": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "identifier": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "updatedAt": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "createdAt"
                },
                "uniqueItems": true
              }
            ],
            "title": "AwsProducts.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvAwsProducts>"
      },
      "alhs2defvalaladvAwsProducts.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvAwsProducts.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": "AwsProducts.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "createdAt": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "family": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "identifier": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "updatedAt": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "createdAt"
                },
                "uniqueItems": true
              }
            ],
            "title": "AwsProducts.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvAwsProducts>"
      },
      "alhs2defvalaladvBusinessRules.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvBusinessRules.Filter",
        "properties": {
          "where": {
            "title": "BusinessRules.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvBusinessRules>"
      },
      "alhs2defvalaladvBusinessRules.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvBusinessRules.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": {
                  "createdAt": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "ruleJson": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "updatedAt": {
                    "type": "boolean"
                  },
                  "version": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "createdAt"
                },
                "uniqueItems": true
              }
            ],
            "title": "BusinessRules.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvBusinessRules>"
      },
      "alhs2defvalaladvBusinessRules.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvBusinessRules.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": "BusinessRules.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "createdAt": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "ruleJson": {
                    "type": "boolean"
                  },
                  "status": {
                    "type": "boolean"
                  },
                  "updatedAt": {
                    "type": "boolean"
                  },
                  "version": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "createdAt"
                },
                "uniqueItems": true
              }
            ],
            "title": "BusinessRules.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvBusinessRules>"
      },
      "alhs2defvalaladvClosedLostReason.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvClosedLostReason.Filter",
        "properties": {
          "where": {
            "title": "ClosedLostReason.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvClosedLostReason>"
      },
      "alhs2defvalaladvClosedLostReason.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvClosedLostReason.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "ClosedLostReason.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvClosedLostReason>"
      },
      "alhs2defvalaladvClosedLostReason.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvClosedLostReason.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": "ClosedLostReason.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "ClosedLostReason.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvClosedLostReason>"
      },
      "alhs2defvalaladvCompetitiveTracking.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvCompetitiveTracking.Filter",
        "properties": {
          "where": {
            "title": "CompetitiveTracking.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvCompetitiveTracking>"
      },
      "alhs2defvalaladvCompetitiveTracking.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvCompetitiveTracking.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "CompetitiveTracking.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvCompetitiveTracking>"
      },
      "alhs2defvalaladvCompetitiveTracking.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvCompetitiveTracking.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": "CompetitiveTracking.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "CompetitiveTracking.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvCompetitiveTracking>"
      },
      "alhs2defvalaladvCountry.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvCountry.Filter",
        "properties": {
          "where": {
            "title": "Country.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvCountry>"
      },
      "alhs2defvalaladvCountry.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvCountry.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": {
                  "countryCode": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "countryCode"
                },
                "uniqueItems": true
              }
            ],
            "title": "Country.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvCountry>"
      },
      "alhs2defvalaladvCountry.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvCountry.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": "Country.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "countryCode": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "countryCode"
                },
                "uniqueItems": true
              }
            ],
            "title": "Country.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvCountry>"
      },
      "alhs2defvalaladvCronConfig.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvCronConfig.Filter",
        "properties": {
          "where": {
            "title": "CronConfig.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvCronConfig>"
      },
      "alhs2defvalaladvCronConfig.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvCronConfig.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": {
                  "createdAt": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "enabled": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "schedule": {
                    "type": "boolean"
                  },
                  "timezone": {
                    "type": "boolean"
                  },
                  "updatedAt": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "createdAt"
                },
                "uniqueItems": true
              }
            ],
            "title": "CronConfig.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvCronConfig>"
      },
      "alhs2defvalaladvCronConfig.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvCronConfig.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": "CronConfig.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "createdAt": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "enabled": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "schedule": {
                    "type": "boolean"
                  },
                  "timezone": {
                    "type": "boolean"
                  },
                  "updatedAt": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "createdAt"
                },
                "uniqueItems": true
              }
            ],
            "title": "CronConfig.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvCronConfig>"
      },
      "alhs2defvalaladvDeliveryModel.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvDeliveryModel.Filter",
        "properties": {
          "where": {
            "title": "DeliveryModel.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvDeliveryModel>"
      },
      "alhs2defvalaladvDeliveryModel.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvDeliveryModel.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "DeliveryModel.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvDeliveryModel>"
      },
      "alhs2defvalaladvDeliveryModel.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvDeliveryModel.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": "DeliveryModel.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "DeliveryModel.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvDeliveryModel>"
      },
      "alhs2defvalaladvDuration.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvDuration.Filter",
        "properties": {
          "where": {
            "title": "Duration.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvDuration>"
      },
      "alhs2defvalaladvDuration.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvDuration.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"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "value": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Duration.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvDuration>"
      },
      "alhs2defvalaladvDuration.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvDuration.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": "Duration.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "value": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Duration.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvDuration>"
      },
      "alhs2defvalaladvHubspotCompanyProperties.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvHubspotCompanyProperties.Filter",
        "properties": {
          "where": {
            "title": "HubspotCompanyProperties.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvHubspotCompanyProperties>"
      },
      "alhs2defvalaladvHubspotCompanyProperties.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvHubspotCompanyProperties.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": {
                  "calculated": {
                    "type": "boolean"
                  },
                  "createdAt": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "formField": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "label": {
                    "type": "boolean"
                  },
                  "multiSelect": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "options": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "updatedAt": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "calculated"
                },
                "uniqueItems": true
              }
            ],
            "title": "HubspotCompanyProperties.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvHubspotCompanyProperties>"
      },
      "alhs2defvalaladvHubspotCompanyProperties.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvHubspotCompanyProperties.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": "HubspotCompanyProperties.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "calculated": {
                    "type": "boolean"
                  },
                  "createdAt": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "formField": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "label": {
                    "type": "boolean"
                  },
                  "multiSelect": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "options": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "updatedAt": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "calculated"
                },
                "uniqueItems": true
              }
            ],
            "title": "HubspotCompanyProperties.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvHubspotCompanyProperties>"
      },
      "alhs2defvalaladvHubspotDealPropertiesV2.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvHubspotDealPropertiesV2.Filter",
        "properties": {
          "where": {
            "title": "HubspotDealPropertiesV2.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvHubspotDealPropertiesV2>"
      },
      "alhs2defvalaladvHubspotDealPropertiesV2.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvHubspotDealPropertiesV2.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": {
                  "calculated": {
                    "type": "boolean"
                  },
                  "createdAt": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "formField": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "label": {
                    "type": "boolean"
                  },
                  "multiSelect": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "options": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "updatedAt": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "calculated"
                },
                "uniqueItems": true
              }
            ],
            "title": "HubspotDealPropertiesV2.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvHubspotDealPropertiesV2>"
      },
      "alhs2defvalaladvHubspotDealPropertiesV2.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvHubspotDealPropertiesV2.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": "HubspotDealPropertiesV2.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "calculated": {
                    "type": "boolean"
                  },
                  "createdAt": {
                    "type": "boolean"
                  },
                  "description": {
                    "type": "boolean"
                  },
                  "formField": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "label": {
                    "type": "boolean"
                  },
                  "multiSelect": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "options": {
                    "type": "boolean"
                  },
                  "type": {
                    "type": "boolean"
                  },
                  "updatedAt": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "calculated"
                },
                "uniqueItems": true
              }
            ],
            "title": "HubspotDealPropertiesV2.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvHubspotDealPropertiesV2>"
      },
      "alhs2defvalaladvIndustryVertical.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvIndustryVertical.Filter",
        "properties": {
          "where": {
            "title": "IndustryVertical.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvIndustryVertical>"
      },
      "alhs2defvalaladvIndustryVertical.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvIndustryVertical.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "IndustryVertical.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvIndustryVertical>"
      },
      "alhs2defvalaladvIndustryVertical.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvIndustryVertical.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": "IndustryVertical.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "IndustryVertical.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvIndustryVertical>"
      },
      "alhs2defvalaladvMarketingActivityChannel.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvMarketingActivityChannel.Filter",
        "properties": {
          "where": {
            "title": "MarketingActivityChannel.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvMarketingActivityChannel>"
      },
      "alhs2defvalaladvMarketingActivityChannel.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvMarketingActivityChannel.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "MarketingActivityChannel.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvMarketingActivityChannel>"
      },
      "alhs2defvalaladvMarketingActivityChannel.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvMarketingActivityChannel.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": "MarketingActivityChannel.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "MarketingActivityChannel.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvMarketingActivityChannel>"
      },
      "alhs2defvalaladvMarketingActivityUseCase.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvMarketingActivityUseCase.Filter",
        "properties": {
          "where": {
            "title": "MarketingActivityUseCase.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvMarketingActivityUseCase>"
      },
      "alhs2defvalaladvMarketingActivityUseCase.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvMarketingActivityUseCase.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "MarketingActivityUseCase.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvMarketingActivityUseCase>"
      },
      "alhs2defvalaladvMarketingActivityUseCase.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvMarketingActivityUseCase.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": "MarketingActivityUseCase.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "MarketingActivityUseCase.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvMarketingActivityUseCase>"
      },
      "alhs2defvalaladvOpportunityStatistics.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvOpportunityStatistics.Filter",
        "properties": {
          "where": {
            "title": "OpportunityStatistics.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvOpportunityStatistics>"
      },
      "alhs2defvalaladvOpportunityStatistics.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvOpportunityStatistics.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": {
                  "awsOriginated": {
                    "type": "boolean"
                  },
                  "createdAt": {
                    "type": "boolean"
                  },
                  "customer": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "partnerOriginated": {
                    "type": "boolean"
                  },
                  "reportDate": {
                    "type": "boolean"
                  },
                  "updatedAt": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "awsOriginated"
                },
                "uniqueItems": true
              }
            ],
            "title": "OpportunityStatistics.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvOpportunityStatistics>"
      },
      "alhs2defvalaladvOpportunityStatistics.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvOpportunityStatistics.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": "OpportunityStatistics.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "awsOriginated": {
                    "type": "boolean"
                  },
                  "createdAt": {
                    "type": "boolean"
                  },
                  "customer": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "partnerOriginated": {
                    "type": "boolean"
                  },
                  "reportDate": {
                    "type": "boolean"
                  },
                  "updatedAt": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "awsOriginated"
                },
                "uniqueItems": true
              }
            ],
            "title": "OpportunityStatistics.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvOpportunityStatistics>"
      },
      "alhs2defvalaladvOpportunityType.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvOpportunityType.Filter",
        "properties": {
          "where": {
            "title": "OpportunityType.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvOpportunityType>"
      },
      "alhs2defvalaladvOpportunityType.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvOpportunityType.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OpportunityType.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvOpportunityType>"
      },
      "alhs2defvalaladvOpportunityType.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvOpportunityType.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": "OpportunityType.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "OpportunityType.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvOpportunityType>"
      },
      "alhs2defvalaladvPartnerPrimaryNeed.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvPartnerPrimaryNeed.Filter",
        "properties": {
          "where": {
            "title": "PartnerPrimaryNeed.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvPartnerPrimaryNeed>"
      },
      "alhs2defvalaladvPartnerPrimaryNeed.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvPartnerPrimaryNeed.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "PartnerPrimaryNeed.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvPartnerPrimaryNeed>"
      },
      "alhs2defvalaladvPartnerPrimaryNeed.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvPartnerPrimaryNeed.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": "PartnerPrimaryNeed.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "PartnerPrimaryNeed.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvPartnerPrimaryNeed>"
      },
      "alhs2defvalaladvPingResponse": {
        "type": "object",
        "title": "alhs2defvalaladvPingResponse",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "alhs2defvalaladvPing2Response": {
        "type": "object",
        "title": "alhs2defvalaladvPing2Response",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "alhs2defvalaladvPostalCode.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvPostalCode.Filter",
        "properties": {
          "where": {
            "title": "PostalCode.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvPostalCode>"
      },
      "alhs2defvalaladvPostalCode.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvPostalCode.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "PostalCode.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvPostalCode>"
      },
      "alhs2defvalaladvPostalCode.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvPostalCode.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": "PostalCode.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "PostalCode.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvPostalCode>"
      },
      "alhs2defvalaladvReviewStatus.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvReviewStatus.Filter",
        "properties": {
          "where": {
            "title": "ReviewStatus.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvReviewStatus>"
      },
      "alhs2defvalaladvReviewStatus.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvReviewStatus.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "ReviewStatus.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvReviewStatus>"
      },
      "alhs2defvalaladvReviewStatus.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvReviewStatus.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": "ReviewStatus.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "ReviewStatus.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvReviewStatus>"
      },
      "alhs2defvalaladvSalesActivities.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvSalesActivities.Filter",
        "properties": {
          "where": {
            "title": "SalesActivities.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvSalesActivities>"
      },
      "alhs2defvalaladvSalesActivities.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvSalesActivities.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "SalesActivities.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvSalesActivities>"
      },
      "alhs2defvalaladvSalesActivities.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvSalesActivities.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": "SalesActivities.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "SalesActivities.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvSalesActivities>"
      },
      "alhs2defvalaladvStage.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvStage.Filter",
        "properties": {
          "where": {
            "title": "Stage.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvStage>"
      },
      "alhs2defvalaladvStage.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvStage.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"
                  },
                  "isDefault": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Stage.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvStage>"
      },
      "alhs2defvalaladvStage.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvStage.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": "Stage.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "isDefault": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "Stage.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvStage>"
      },
      "alhs2defvalaladvStateProvince.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvStateProvince.Filter",
        "properties": {
          "where": {
            "title": "StateProvince.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvStateProvince>"
      },
      "alhs2defvalaladvStateProvince.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvStateProvince.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "StateProvince.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvStateProvince>"
      },
      "alhs2defvalaladvStateProvince.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvStateProvince.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": "StateProvince.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "StateProvince.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvStateProvince>"
      },
      "alhs2defvalaladvUsStates.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvUsStates.Filter",
        "properties": {
          "where": {
            "title": "UsStates.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvUsStates>"
      },
      "alhs2defvalaladvUsStates.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvUsStates.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "UsStates.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvUsStates>"
      },
      "alhs2defvalaladvUsStates.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvUsStates.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": "UsStates.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "UsStates.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvUsStates>"
      },
      "alhs2defvalaladvUseCase.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvUseCase.Filter",
        "properties": {
          "where": {
            "title": "UseCase.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvUseCase>"
      },
      "alhs2defvalaladvUseCase.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvUseCase.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"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "UseCase.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvUseCase>"
      },
      "alhs2defvalaladvUseCase.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvUseCase.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": "UseCase.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "UseCase.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvUseCase>"
      },
      "alhs2defvalaladvUserCredentials.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvUserCredentials.Filter",
        "properties": {
          "where": {
            "title": "UserCredentials.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvUserCredentials>"
      },
      "alhs2defvalaladvUserCredentials.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvUserCredentials.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"
                  },
                  "password": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "UserCredentials.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvUserCredentials>"
      },
      "alhs2defvalaladvUserCredentials.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvUserCredentials.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": "UserCredentials.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "password": {
                    "type": "boolean"
                  },
                  "userId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "UserCredentials.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvUserCredentials>"
      },
      "alhs2defvalaladvUser.Filter": {
        "type": "object",
        "title": "alhs2defvalaladvUser.Filter",
        "properties": {
          "where": {
            "title": "User.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvUser>"
      },
      "alhs2defvalaladvUser.Filter1": {
        "type": "object",
        "title": "alhs2defvalaladvUser.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": {
                  "email": {
                    "type": "boolean"
                  },
                  "emailVerified": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "username": {
                    "type": "boolean"
                  },
                  "verificationToken": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "email"
                },
                "uniqueItems": true
              }
            ],
            "title": "User.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvUser>"
      },
      "alhs2defvalaladvUser.Filter2": {
        "type": "object",
        "title": "alhs2defvalaladvUser.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": "User.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "email": {
                    "type": "boolean"
                  },
                  "emailVerified": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "username": {
                    "type": "boolean"
                  },
                  "verificationToken": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": true
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "example": "email"
                },
                "uniqueItems": true
              }
            ],
            "title": "User.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs2defvalaladvUser>"
      },
      "alhs2defvalAladvCronConfigPartial": {
        "title": "alhs2defvalAladvCronConfigPartial",
        "type": "object",
        "properties": {
          "createdAt": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "description": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 65535,
            "x-generated": false
          },
          "enabled": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1
          },
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            }
          },
          "schedule": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "timezone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 64,
            "x-generated": false
          },
          "updatedAt": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "alhs2defvalPingResponse": {
        "type": "object",
        "title": "alhs2defvalPingResponse",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "alhs2defvalPing2Response": {
        "type": "object",
        "title": "alhs2defvalPing2Response",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "alhs2DefvalAladvCronConfigPartial": {
        "title": "alhs2DefvalAladvCronConfigPartial",
        "type": "object",
        "properties": {
          "createdAt": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "description": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 65535,
            "x-generated": false
          },
          "enabled": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1
          },
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            }
          },
          "schedule": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "timezone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 64,
            "x-generated": false
          },
          "updatedAt": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "alhs2PingResponse": {
        "type": "object",
        "title": "alhs2PingResponse",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "alhs2Ping2Response": {
        "type": "object",
        "title": "alhs2Ping2Response",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "Alhs2DefvalaladvCronConfigPartial": {
        "title": "Alhs2DefvalaladvCronConfigPartial",
        "type": "object",
        "properties": {
          "createdAt": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          },
          "description": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 65535,
            "x-generated": false
          },
          "enabled": {
            "x-primary-key": false,
            "type": "number",
            "x-precision": 3,
            "x-scale": 0,
            "x-generated": false
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-precision": 10,
            "x-scale": 0,
            "x-generated": 1
          },
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false,
            "x-index": {
              "unique": true
            }
          },
          "schedule": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255,
            "x-generated": false
          },
          "timezone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 64,
            "x-generated": false
          },
          "updatedAt": {
            "x-primary-key": false,
            "type": "string",
            "x-generated": false,
            "format": "date-time"
          }
        },
        "additionalProperties": false
      },
      "alhs1alaceSolution": {
        "title": "alhs1alaceSolution",
        "type": "object",
        "properties": {
          "Catalog": {
            "x-primary-key": true,
            "type": "string"
          },
          "Category": {
            "type": "array",
            "items": {
              "x-primary-key": false
            }
          },
          "Identifier": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "string"
            }
          },
          "MaxResults": {
            "x-primary-key": false,
            "type": "number"
          },
          "Status": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "string"
            }
          },
          "Sort": {
            "x-primary-key": false,
            "type": "object"
          }
        },
        "additionalProperties": false
      },
      "alhs1alaceOpportunity": {
        "title": "alhs1alaceOpportunity",
        "type": "object",
        "properties": {
          "Catalog": {
            "x-primary-key": true,
            "type": "string"
          },
          "CustomerCompanyName": {
            "type": "array",
            "items": {
              "x-primary-key": false
            }
          },
          "Identifier": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "string"
            }
          },
          "MaxResults": {
            "x-primary-key": false,
            "type": "number"
          },
          "LifeCycleReviewStatus": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "string"
            }
          },
          "LifeCycleStage": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "string"
            }
          },
          "Sort": {
            "x-primary-key": false,
            "type": "object"
          }
        },
        "additionalProperties": false
      },
      "alhs1alaceSts": {
        "title": "alhs1alaceSts",
        "type": "object",
        "properties": {
          "accessKeyId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "expiration": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "secretAccessKey": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "sessionToken": {
            "x-length": 1000,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "alhs1alaceStsWithRelations": {
        "title": "alhs1alaceStsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs1alaceStsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "accessKeyId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "expiration": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "secretAccessKey": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "sessionToken": {
            "x-length": 1000,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhs1alaceStsWithRelations, >"
      },
      "alhs1alaceNewSts": {
        "title": "alhs1alaceNewSts",
        "type": "object",
        "description": "(tsType: Omit<alhs1alaceSts, 'id'>, schemaOptions: { title: 'alhs1alaceNewSts', exclude: [ 'id' ] })",
        "properties": {
          "accessKeyId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "expiration": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "secretAccessKey": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "sessionToken": {
            "x-length": 1000,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhs1alaceSts, 'id'>"
      },
      "alhs1alaceStsPartial": {
        "title": "alhs1alaceStsPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs1alaceSts>, schemaOptions: { partial: true })",
        "properties": {
          "accessKeyId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "expiration": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "secretAccessKey": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "sessionToken": {
            "x-length": 1000,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhs1alaceSts>"
      },
      "alhs1alaceFieldConfigurations": {
        "title": "alhs1alaceFieldConfigurations",
        "type": "object",
        "properties": {
          "customHubspotField": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "fieldKey": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          }
        },
        "required": [
          "customHubspotField",
          "fieldKey"
        ],
        "additionalProperties": false
      },
      "alhs1alaceFieldConfigurationsWithRelations": {
        "title": "alhs1alaceFieldConfigurationsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs1alaceFieldConfigurationsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "customHubspotField": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "fieldKey": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          }
        },
        "required": [
          "customHubspotField",
          "fieldKey"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhs1alaceFieldConfigurationsWithRelations, >"
      },
      "alhs1alaceNewFieldConfigurations": {
        "title": "alhs1alaceNewFieldConfigurations",
        "type": "object",
        "description": "(tsType: Omit<alhs1alaceFieldConfigurations, 'id'>, schemaOptions: { title: 'alhs1alaceNewFieldConfigurations', exclude: [ 'id' ] })",
        "properties": {
          "customHubspotField": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "fieldKey": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "required": [
          "customHubspotField",
          "fieldKey"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhs1alaceFieldConfigurations, 'id'>"
      },
      "alhs1alaceFieldConfigurationsPartial": {
        "title": "alhs1alaceFieldConfigurationsPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs1alaceFieldConfigurations>, schemaOptions: { partial: true })",
        "properties": {
          "customHubspotField": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "fieldKey": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhs1alaceFieldConfigurations>"
      },
      "alhs1alaceConfigurations": {
        "title": "alhs1alaceConfigurations",
        "type": "object",
        "properties": {
          "additionalField1": {
            "x-primary-key": false,
            "type": "string"
          },
          "additionalField2": {
            "x-primary-key": false,
            "type": "string"
          },
          "aiApiKey": {
            "x-length": 500,
            "x-primary-key": false,
            "type": "string"
          },
          "aiBaseUrl": {
            "x-length": 500,
            "x-primary-key": false,
            "type": "string"
          },
          "aiModel": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "aiProvider": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "awsAccessKeyId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "awsCatalog": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "awsOppIdName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "awsRegion": {
            "x-length": 25,
            "x-primary-key": false,
            "type": "string"
          },
          "awsSecretAccessKey": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "awsServiceName": {
            "x-length": 25,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotAppId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotClientId": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotClientSecret": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotCustomerDataSource": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotDeveloperApiKey": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotRedirectService": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotRegService": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotScopes": {
            "x-length": 5000,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotSyncMode": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotWebhookUrl": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "projectTitleName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "syncDuration": {
            "x-primary-key": false,
            "type": "number"
          },
          "syncStages": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "string"
            }
          },
          "targetCloseDateName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "alhs1alaceConfigurationsWithRelations": {
        "title": "alhs1alaceConfigurationsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhs1alaceConfigurationsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "additionalField1": {
            "x-primary-key": false,
            "type": "string"
          },
          "additionalField2": {
            "x-primary-key": false,
            "type": "string"
          },
          "aiApiKey": {
            "x-length": 500,
            "x-primary-key": false,
            "type": "string"
          },
          "aiBaseUrl": {
            "x-length": 500,
            "x-primary-key": false,
            "type": "string"
          },
          "aiModel": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "aiProvider": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "awsAccessKeyId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "awsCatalog": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "awsOppIdName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "awsRegion": {
            "x-length": 25,
            "x-primary-key": false,
            "type": "string"
          },
          "awsSecretAccessKey": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "awsServiceName": {
            "x-length": 25,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotAppId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotClientId": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotClientSecret": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotCustomerDataSource": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotDeveloperApiKey": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotRedirectService": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotRegService": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotScopes": {
            "x-length": 5000,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotSyncMode": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotWebhookUrl": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "projectTitleName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "syncDuration": {
            "x-primary-key": false,
            "type": "number"
          },
          "syncStages": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "string"
            }
          },
          "targetCloseDateName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhs1alaceConfigurationsWithRelations, >"
      },
      "alhs1alaceNewConfigurations": {
        "title": "alhs1alaceNewConfigurations",
        "type": "object",
        "description": "(tsType: Omit<alhs1alaceConfigurations, 'id'>, schemaOptions: { title: 'alhs1alaceNewConfigurations', exclude: [ 'id' ] })",
        "properties": {
          "additionalField1": {
            "x-primary-key": false,
            "type": "string"
          },
          "additionalField2": {
            "x-primary-key": false,
            "type": "string"
          },
          "aiApiKey": {
            "x-length": 500,
            "x-primary-key": false,
            "type": "string"
          },
          "aiBaseUrl": {
            "x-length": 500,
            "x-primary-key": false,
            "type": "string"
          },
          "aiModel": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "aiProvider": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "awsAccessKeyId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "awsCatalog": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "awsOppIdName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "awsRegion": {
            "x-length": 25,
            "x-primary-key": false,
            "type": "string"
          },
          "awsSecretAccessKey": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "awsServiceName": {
            "x-length": 25,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotAppId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotClientId": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotClientSecret": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotCustomerDataSource": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotDeveloperApiKey": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotRedirectService": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotRegService": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotScopes": {
            "x-length": 5000,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotSyncMode": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotWebhookUrl": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "projectTitleName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "syncDuration": {
            "x-primary-key": false,
            "type": "number"
          },
          "syncStages": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "string"
            }
          },
          "targetCloseDateName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhs1alaceConfigurations, 'id'>"
      },
      "alhs1alaceConfigurationsPartial": {
        "title": "alhs1alaceConfigurationsPartial",
        "type": "object",
        "description": "(tsType: Partial<alhs1alaceConfigurations>, schemaOptions: { partial: true })",
        "properties": {
          "additionalField1": {
            "x-primary-key": false,
            "type": "string"
          },
          "additionalField2": {
            "x-primary-key": false,
            "type": "string"
          },
          "aiApiKey": {
            "x-length": 500,
            "x-primary-key": false,
            "type": "string"
          },
          "aiBaseUrl": {
            "x-length": 500,
            "x-primary-key": false,
            "type": "string"
          },
          "aiModel": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "aiProvider": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "awsAccessKeyId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "awsCatalog": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "awsOppIdName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "awsRegion": {
            "x-length": 25,
            "x-primary-key": false,
            "type": "string"
          },
          "awsSecretAccessKey": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "awsServiceName": {
            "x-length": 25,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotAppId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotClientId": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotClientSecret": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotCustomerDataSource": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotDeveloperApiKey": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotRedirectService": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotRegService": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotScopes": {
            "x-length": 5000,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotSyncMode": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "hubspotWebhookUrl": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "projectTitleName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "syncDuration": {
            "x-primary-key": false,
            "type": "number"
          },
          "syncStages": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "string"
            }
          },
          "targetCloseDateName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhs1alaceConfigurations>"
      },
      "alhs1alaceloopback.Count": {
        "type": "object",
        "title": "alhs1alaceloopback.Count",
        "x-typescript-type": "@loopback/repository#Count",
        "properties": {
          "count": {
            "type": "number"
          }
        }
      },
      "alhs1alaceConfigurations.Filter": {
        "type": "object",
        "title": "alhs1alaceConfigurations.Filter",
        "properties": {
          "where": {
            "title": "Configurations.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs1alaceConfigurations>"
      },
      "alhs1alaceConfigurations.Filter1": {
        "type": "object",
        "title": "alhs1alaceConfigurations.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": {
                  "additionalField1": {
                    "type": "boolean"
                  },
                  "additionalField2": {
                    "type": "boolean"
                  },
                  "aiApiKey": {
                    "type": "boolean"
                  },
                  "aiBaseUrl": {
                    "type": "boolean"
                  },
                  "aiModel": {
                    "type": "boolean"
                  },
                  "aiProvider": {
                    "type": "boolean"
                  },
                  "awsAccessKeyId": {
                    "type": "boolean"
                  },
                  "awsCatalog": {
                    "type": "boolean"
                  },
                  "awsOppIdName": {
                    "type": "boolean"
                  },
                  "awsRegion": {
                    "type": "boolean"
                  },
                  "awsSecretAccessKey": {
                    "type": "boolean"
                  },
                  "awsServiceName": {
                    "type": "boolean"
                  },
                  "hubspotAppId": {
                    "type": "boolean"
                  },
                  "hubspotClientId": {
                    "type": "boolean"
                  },
                  "hubspotClientSecret": {
                    "type": "boolean"
                  },
                  "hubspotCustomerDataSource": {
                    "type": "boolean"
                  },
                  "hubspotDeveloperApiKey": {
                    "type": "boolean"
                  },
                  "hubspotRedirectService": {
                    "type": "boolean"
                  },
                  "hubspotRegService": {
                    "type": "boolean"
                  },
                  "hubspotScopes": {
                    "type": "boolean"
                  },
                  "hubspotSyncMode": {
                    "type": "boolean"
                  },
                  "hubspotWebhookUrl": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "projectTitleName": {
                    "type": "boolean"
                  },
                  "syncDuration": {
                    "type": "boolean"
                  },
                  "syncStages": {
                    "type": "boolean"
                  },
                  "targetCloseDateName": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "additionalField1",
                    "additionalField2",
                    "aiApiKey",
                    "aiBaseUrl",
                    "aiModel",
                    "aiProvider",
                    "awsAccessKeyId",
                    "awsCatalog",
                    "awsOppIdName",
                    "awsRegion",
                    "awsSecretAccessKey",
                    "awsServiceName",
                    "hubspotAppId",
                    "hubspotClientId",
                    "hubspotClientSecret",
                    "hubspotCustomerDataSource",
                    "hubspotDeveloperApiKey",
                    "hubspotRedirectService",
                    "hubspotRegService",
                    "hubspotScopes",
                    "hubspotSyncMode",
                    "hubspotWebhookUrl",
                    "id",
                    "projectTitleName",
                    "syncDuration",
                    "syncStages",
                    "targetCloseDateName"
                  ],
                  "example": "additionalField1"
                },
                "uniqueItems": true
              }
            ],
            "title": "Configurations.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs1alaceConfigurations>"
      },
      "alhs1alaceConfigurations.Filter2": {
        "type": "object",
        "title": "alhs1alaceConfigurations.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": "Configurations.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "additionalField1": {
                    "type": "boolean"
                  },
                  "additionalField2": {
                    "type": "boolean"
                  },
                  "aiApiKey": {
                    "type": "boolean"
                  },
                  "aiBaseUrl": {
                    "type": "boolean"
                  },
                  "aiModel": {
                    "type": "boolean"
                  },
                  "aiProvider": {
                    "type": "boolean"
                  },
                  "awsAccessKeyId": {
                    "type": "boolean"
                  },
                  "awsCatalog": {
                    "type": "boolean"
                  },
                  "awsOppIdName": {
                    "type": "boolean"
                  },
                  "awsRegion": {
                    "type": "boolean"
                  },
                  "awsSecretAccessKey": {
                    "type": "boolean"
                  },
                  "awsServiceName": {
                    "type": "boolean"
                  },
                  "hubspotAppId": {
                    "type": "boolean"
                  },
                  "hubspotClientId": {
                    "type": "boolean"
                  },
                  "hubspotClientSecret": {
                    "type": "boolean"
                  },
                  "hubspotCustomerDataSource": {
                    "type": "boolean"
                  },
                  "hubspotDeveloperApiKey": {
                    "type": "boolean"
                  },
                  "hubspotRedirectService": {
                    "type": "boolean"
                  },
                  "hubspotRegService": {
                    "type": "boolean"
                  },
                  "hubspotScopes": {
                    "type": "boolean"
                  },
                  "hubspotSyncMode": {
                    "type": "boolean"
                  },
                  "hubspotWebhookUrl": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "projectTitleName": {
                    "type": "boolean"
                  },
                  "syncDuration": {
                    "type": "boolean"
                  },
                  "syncStages": {
                    "type": "boolean"
                  },
                  "targetCloseDateName": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "additionalField1",
                    "additionalField2",
                    "aiApiKey",
                    "aiBaseUrl",
                    "aiModel",
                    "aiProvider",
                    "awsAccessKeyId",
                    "awsCatalog",
                    "awsOppIdName",
                    "awsRegion",
                    "awsSecretAccessKey",
                    "awsServiceName",
                    "hubspotAppId",
                    "hubspotClientId",
                    "hubspotClientSecret",
                    "hubspotCustomerDataSource",
                    "hubspotDeveloperApiKey",
                    "hubspotRedirectService",
                    "hubspotRegService",
                    "hubspotScopes",
                    "hubspotSyncMode",
                    "hubspotWebhookUrl",
                    "id",
                    "projectTitleName",
                    "syncDuration",
                    "syncStages",
                    "targetCloseDateName"
                  ],
                  "example": "additionalField1"
                },
                "uniqueItems": true
              }
            ],
            "title": "Configurations.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs1alaceConfigurations>"
      },
      "alhs1alaceFieldConfigurations.Filter": {
        "type": "object",
        "title": "alhs1alaceFieldConfigurations.Filter",
        "properties": {
          "where": {
            "title": "FieldConfigurations.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs1alaceFieldConfigurations>"
      },
      "alhs1alaceFieldConfigurations.Filter1": {
        "type": "object",
        "title": "alhs1alaceFieldConfigurations.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": {
                  "customHubspotField": {
                    "type": "boolean"
                  },
                  "fieldKey": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "customHubspotField",
                    "fieldKey",
                    "id"
                  ],
                  "example": "customHubspotField"
                },
                "uniqueItems": true
              }
            ],
            "title": "FieldConfigurations.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs1alaceFieldConfigurations>"
      },
      "alhs1alaceFieldConfigurations.Filter2": {
        "type": "object",
        "title": "alhs1alaceFieldConfigurations.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": "FieldConfigurations.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "customHubspotField": {
                    "type": "boolean"
                  },
                  "fieldKey": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "customHubspotField",
                    "fieldKey",
                    "id"
                  ],
                  "example": "customHubspotField"
                },
                "uniqueItems": true
              }
            ],
            "title": "FieldConfigurations.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs1alaceFieldConfigurations>"
      },
      "alhs1alacePingResponse": {
        "type": "object",
        "title": "alhs1alacePingResponse",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "alhs1alacePing2Response": {
        "type": "object",
        "title": "alhs1alacePing2Response",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "alhs1alaceSts.Filter": {
        "type": "object",
        "title": "alhs1alaceSts.Filter",
        "properties": {
          "where": {
            "title": "Sts.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs1alaceSts>"
      },
      "alhs1alaceSts.Filter1": {
        "type": "object",
        "title": "alhs1alaceSts.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": {
                  "accessKeyId": {
                    "type": "boolean"
                  },
                  "expiration": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "secretAccessKey": {
                    "type": "boolean"
                  },
                  "sessionToken": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "accessKeyId",
                    "expiration",
                    "id",
                    "secretAccessKey",
                    "sessionToken"
                  ],
                  "example": "accessKeyId"
                },
                "uniqueItems": true
              }
            ],
            "title": "Sts.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs1alaceSts>"
      },
      "alhs1alaceSts.Filter2": {
        "type": "object",
        "title": "alhs1alaceSts.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": "Sts.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "accessKeyId": {
                    "type": "boolean"
                  },
                  "expiration": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "secretAccessKey": {
                    "type": "boolean"
                  },
                  "sessionToken": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "accessKeyId",
                    "expiration",
                    "id",
                    "secretAccessKey",
                    "sessionToken"
                  ],
                  "example": "accessKeyId"
                },
                "uniqueItems": true
              }
            ],
            "title": "Sts.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhs1alaceSts>"
      },
      "alhs1AlaceSts": {
        "title": "alhs1AlaceSts",
        "type": "object",
        "properties": {
          "accessKeyId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "expiration": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "secretAccessKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "sessionToken": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000
          }
        },
        "additionalProperties": false
      },
      "alhs1AlaceStsPartial": {
        "title": "alhs1AlaceStsPartial",
        "type": "object",
        "properties": {
          "accessKeyId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "expiration": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "secretAccessKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "sessionToken": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000
          }
        },
        "additionalProperties": false
      },
      "alhs1AlaceNewSts": {
        "title": "alhs1AlaceNewSts",
        "type": "object",
        "properties": {
          "accessKeyId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "expiration": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "secretAccessKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "sessionToken": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000
          }
        },
        "additionalProperties": false
      },
      "alhs1AlaceSolution": {
        "title": "alhs1AlaceSolution",
        "type": "object",
        "properties": {
          "Catalog": {
            "x-primary-key": true,
            "type": "string"
          },
          "Category": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false
              }
            }
          },
          "Identifier": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "MaxResults": {
            "x-primary-key": false,
            "type": "number"
          },
          "Status": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "Sort": {
            "x-primary-key": false,
            "type": "object"
          }
        },
        "additionalProperties": false
      },
      "alhs1AlaceOpportunity": {
        "title": "alhs1AlaceOpportunity",
        "type": "object",
        "properties": {
          "Catalog": {
            "x-primary-key": true,
            "type": "string"
          },
          "CustomerCompanyName": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false
              }
            }
          },
          "Identifier": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "MaxResults": {
            "x-primary-key": false,
            "type": "number"
          },
          "LifeCycleReviewStatus": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "LifeCycleStage": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "Sort": {
            "x-primary-key": false,
            "type": "object"
          }
        },
        "additionalProperties": false
      },
      "alhs1AlaceFieldConfigurations": {
        "title": "alhs1AlaceFieldConfigurations",
        "type": "object",
        "properties": {
          "customHubspotField": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "fieldKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          }
        },
        "required": [
          "customHubspotField",
          "fieldKey"
        ],
        "additionalProperties": false
      },
      "alhs1AlaceFieldConfigurationsPartial": {
        "title": "alhs1AlaceFieldConfigurationsPartial",
        "type": "object",
        "properties": {
          "customHubspotField": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "fieldKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          }
        },
        "additionalProperties": false
      },
      "alhs1AlaceNewFieldConfigurations": {
        "title": "alhs1AlaceNewFieldConfigurations",
        "type": "object",
        "properties": {
          "customHubspotField": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "fieldKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "required": [
          "customHubspotField",
          "fieldKey"
        ],
        "additionalProperties": false
      },
      "alhs1AlaceConfigurations": {
        "title": "alhs1AlaceConfigurations",
        "type": "object",
        "properties": {
          "additionalField1": {
            "x-primary-key": false,
            "type": "string"
          },
          "additionalField2": {
            "x-primary-key": false,
            "type": "string"
          },
          "aiApiKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 500
          },
          "aiBaseUrl": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 500
          },
          "aiModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "aiProvider": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "awsAccessKeyId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsCatalog": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "awsOppIdName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsRegion": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 25
          },
          "awsSecretAccessKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsServiceName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 25
          },
          "hubspotAppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotClientId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotClientSecret": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotCustomerDataSource": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotDeveloperApiKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotRedirectService": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotRegService": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotScopes": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 5000
          },
          "hubspotSyncMode": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotWebhookUrl": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "projectTitleName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "syncDuration": {
            "x-primary-key": false,
            "type": "number"
          },
          "syncStages": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "targetCloseDateName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          }
        },
        "additionalProperties": false
      },
      "alhs1AlaceConfigurationsPartial": {
        "title": "alhs1AlaceConfigurationsPartial",
        "type": "object",
        "properties": {
          "additionalField1": {
            "x-primary-key": false,
            "type": "string"
          },
          "additionalField2": {
            "x-primary-key": false,
            "type": "string"
          },
          "aiApiKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 500
          },
          "aiBaseUrl": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 500
          },
          "aiModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "aiProvider": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "awsAccessKeyId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsCatalog": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "awsOppIdName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsRegion": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 25
          },
          "awsSecretAccessKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsServiceName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 25
          },
          "hubspotAppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotClientId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotClientSecret": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotCustomerDataSource": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotDeveloperApiKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotRedirectService": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotRegService": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotScopes": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 5000
          },
          "hubspotSyncMode": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotWebhookUrl": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "projectTitleName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "syncDuration": {
            "x-primary-key": false,
            "type": "number"
          },
          "syncStages": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "targetCloseDateName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          }
        },
        "additionalProperties": false
      },
      "alhs1AlaceNewConfigurations": {
        "title": "alhs1AlaceNewConfigurations",
        "type": "object",
        "properties": {
          "additionalField1": {
            "x-primary-key": false,
            "type": "string"
          },
          "additionalField2": {
            "x-primary-key": false,
            "type": "string"
          },
          "aiApiKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 500
          },
          "aiBaseUrl": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 500
          },
          "aiModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "aiProvider": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "awsAccessKeyId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsCatalog": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "awsOppIdName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsRegion": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 25
          },
          "awsSecretAccessKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsServiceName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 25
          },
          "hubspotAppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotClientId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotClientSecret": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotCustomerDataSource": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotDeveloperApiKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotRedirectService": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotRegService": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotScopes": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 5000
          },
          "hubspotSyncMode": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotWebhookUrl": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "projectTitleName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "syncDuration": {
            "x-primary-key": false,
            "type": "number"
          },
          "syncStages": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "targetCloseDateName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          }
        },
        "additionalProperties": false
      },
      "alhs1PingResponse": {
        "type": "object",
        "title": "alhs1PingResponse",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "alhs1Ping2Response": {
        "type": "object",
        "title": "alhs1Ping2Response",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "Alhs1AlaceSts": {
        "title": "Alhs1AlaceSts",
        "type": "object",
        "properties": {
          "accessKeyId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "expiration": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "secretAccessKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "sessionToken": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000
          }
        },
        "additionalProperties": false
      },
      "Alhs1AlaceStsPartial": {
        "title": "Alhs1AlaceStsPartial",
        "type": "object",
        "properties": {
          "accessKeyId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "expiration": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "secretAccessKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "sessionToken": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000
          }
        },
        "additionalProperties": false
      },
      "Alhs1AlaceNewSts": {
        "title": "Alhs1AlaceNewSts",
        "type": "object",
        "properties": {
          "accessKeyId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "expiration": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "secretAccessKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "sessionToken": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1000
          }
        },
        "additionalProperties": false
      },
      "Alhs1AlaceSolution": {
        "title": "Alhs1AlaceSolution",
        "type": "object",
        "properties": {
          "Catalog": {
            "x-primary-key": true,
            "type": "string"
          },
          "Category": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false
              }
            }
          },
          "Identifier": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "MaxResults": {
            "x-primary-key": false,
            "type": "number"
          },
          "Status": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "Sort": {
            "x-primary-key": false,
            "type": "object"
          }
        },
        "additionalProperties": false
      },
      "Alhs1AlaceOpportunity": {
        "title": "Alhs1AlaceOpportunity",
        "type": "object",
        "properties": {
          "Catalog": {
            "x-primary-key": true,
            "type": "string"
          },
          "CustomerCompanyName": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false
              }
            }
          },
          "Identifier": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "MaxResults": {
            "x-primary-key": false,
            "type": "number"
          },
          "LifeCycleReviewStatus": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "LifeCycleStage": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "Sort": {
            "x-primary-key": false,
            "type": "object"
          }
        },
        "additionalProperties": false
      },
      "Alhs1AlaceFieldConfigurations": {
        "title": "Alhs1AlaceFieldConfigurations",
        "type": "object",
        "properties": {
          "customHubspotField": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "fieldKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          }
        },
        "required": [
          "customHubspotField",
          "fieldKey"
        ],
        "additionalProperties": false
      },
      "Alhs1AlaceFieldConfigurationsPartial": {
        "title": "Alhs1AlaceFieldConfigurationsPartial",
        "type": "object",
        "properties": {
          "customHubspotField": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "fieldKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          }
        },
        "additionalProperties": false
      },
      "Alhs1AlaceNewFieldConfigurations": {
        "title": "Alhs1AlaceNewFieldConfigurations",
        "type": "object",
        "properties": {
          "customHubspotField": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "fieldKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "required": [
          "customHubspotField",
          "fieldKey"
        ],
        "additionalProperties": false
      },
      "Alhs1AlaceConfigurations": {
        "title": "Alhs1AlaceConfigurations",
        "type": "object",
        "properties": {
          "additionalField1": {
            "x-primary-key": false,
            "type": "string"
          },
          "additionalField2": {
            "x-primary-key": false,
            "type": "string"
          },
          "aiApiKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 500
          },
          "aiBaseUrl": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 500
          },
          "aiModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "aiProvider": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "awsAccessKeyId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsCatalog": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "awsOppIdName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsRegion": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 25
          },
          "awsSecretAccessKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsServiceName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 25
          },
          "hubspotAppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotClientId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotClientSecret": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotCustomerDataSource": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotDeveloperApiKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotRedirectService": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotRegService": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotScopes": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 5000
          },
          "hubspotSyncMode": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotWebhookUrl": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "projectTitleName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "syncDuration": {
            "x-primary-key": false,
            "type": "number"
          },
          "syncStages": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "targetCloseDateName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          }
        },
        "additionalProperties": false
      },
      "Alhs1AlaceConfigurationsPartial": {
        "title": "Alhs1AlaceConfigurationsPartial",
        "type": "object",
        "properties": {
          "additionalField1": {
            "x-primary-key": false,
            "type": "string"
          },
          "additionalField2": {
            "x-primary-key": false,
            "type": "string"
          },
          "aiApiKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 500
          },
          "aiBaseUrl": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 500
          },
          "aiModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "aiProvider": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "awsAccessKeyId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsCatalog": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "awsOppIdName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsRegion": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 25
          },
          "awsSecretAccessKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsServiceName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 25
          },
          "hubspotAppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotClientId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotClientSecret": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotCustomerDataSource": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotDeveloperApiKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotRedirectService": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotRegService": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotScopes": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 5000
          },
          "hubspotSyncMode": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotWebhookUrl": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "projectTitleName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "syncDuration": {
            "x-primary-key": false,
            "type": "number"
          },
          "syncStages": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "targetCloseDateName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          }
        },
        "additionalProperties": false
      },
      "Alhs1AlaceNewConfigurations": {
        "title": "Alhs1AlaceNewConfigurations",
        "type": "object",
        "properties": {
          "additionalField1": {
            "x-primary-key": false,
            "type": "string"
          },
          "additionalField2": {
            "x-primary-key": false,
            "type": "string"
          },
          "aiApiKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 500
          },
          "aiBaseUrl": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 500
          },
          "aiModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "aiProvider": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "awsAccessKeyId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsCatalog": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "awsOppIdName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsRegion": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 25
          },
          "awsSecretAccessKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "awsServiceName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 25
          },
          "hubspotAppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotClientId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotClientSecret": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotCustomerDataSource": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotDeveloperApiKey": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotRedirectService": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotRegService": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "hubspotScopes": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 5000
          },
          "hubspotSyncMode": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "hubspotWebhookUrl": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "projectTitleName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "syncDuration": {
            "x-primary-key": false,
            "type": "number"
          },
          "syncStages": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "targetCloseDateName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          }
        },
        "additionalProperties": false
      },
      "alhsalaceSolutionsOffered": {
        "title": "alhsalaceSolutionsOffered",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceSolutionsOffered, >, schemaOptions: { exclude: [] })",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "name": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceSolutionsOffered, >"
      },
      "alhsalaceNewSolutionsOfferedInProjectDetails": {
        "title": "alhsalaceNewSolutionsOfferedInProjectDetails",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<alhsalaceSolutionsOffered, 'id'>, 'projectDetailId'>, schemaOptions: { title: 'alhsalaceNewSolutionsOfferedInProjectDetails', exclude: [ 'id' ], optional: [ 'projectDetailId' ] })",
        "properties": {
          "name": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<alhsalaceSolutionsOffered, 'id'>, 'projectDetailId'>"
      },
      "alhsalaceSolutionsOfferedPartial": {
        "title": "alhsalaceSolutionsOfferedPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalaceSolutionsOffered>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "name": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalaceSolutionsOffered>"
      },
      "alhsalaceProjectSalesActivities": {
        "title": "alhsalaceProjectSalesActivities",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceProjectSalesActivities, >, schemaOptions: { exclude: [] })",
        "properties": {
          "activity": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceProjectSalesActivities, >"
      },
      "alhsalaceNewProjectSalesActivitiesInProjectDetails": {
        "title": "alhsalaceNewProjectSalesActivitiesInProjectDetails",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<alhsalaceProjectSalesActivities, 'id'>, 'projectDetailId'>, schemaOptions: { title: 'alhsalaceNewProjectSalesActivitiesInProjectDetails', exclude: [ 'id' ], optional: [ 'projectDetailId' ] })",
        "properties": {
          "activity": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<alhsalaceProjectSalesActivities, 'id'>, 'projectDetailId'>"
      },
      "alhsalaceProjectSalesActivitiesPartial": {
        "title": "alhsalaceProjectSalesActivitiesPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalaceProjectSalesActivities>, schemaOptions: { partial: true })",
        "properties": {
          "activity": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalaceProjectSalesActivities>"
      },
      "alhsalaceDeliveryModels": {
        "title": "alhsalaceDeliveryModels",
        "type": "object",
        "properties": {
          "deliveryModel": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsalaceNewDeliveryModelsInProjectDetails": {
        "title": "alhsalaceNewDeliveryModelsInProjectDetails",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<alhsalaceDeliveryModels, 'id'>, 'projectDetailId'>, schemaOptions: { title: 'alhsalaceNewDeliveryModelsInProjectDetails', exclude: [ 'id' ], optional: [ 'projectDetailId' ] })",
        "properties": {
          "deliveryModel": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<alhsalaceDeliveryModels, 'id'>, 'projectDetailId'>"
      },
      "alhsalaceDeliveryModelsPartial": {
        "title": "alhsalaceDeliveryModelsPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalaceDeliveryModels>, schemaOptions: { partial: true })",
        "properties": {
          "deliveryModel": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalaceDeliveryModels>"
      },
      "alhsalaceProjectDetails": {
        "title": "alhsalaceProjectDetails",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceProjectDetails, >, schemaOptions: { exclude: [] })",
        "properties": {
          "additionalComments": {
            "x-primary-key": false,
            "type": "string"
          },
          "apnPrograms": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "competitiveTracking": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "customerBusinessProblem": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "estimatedAwsMonthlyReccuringRevenue": {
            "x-primary-key": false,
            "type": "number"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "otherCompetitors": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "otherSolOffered": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "partnerProjectTitle": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "useCase": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceProjectDetails, >"
      },
      "alhsalacePrimaryNeedsFromAws": {
        "title": "alhsalacePrimaryNeedsFromAws",
        "type": "object",
        "description": "(tsType: Omit<alhsalacePrimaryNeedsFromAws, >, schemaOptions: { exclude: [] })",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "need": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalacePrimaryNeedsFromAws, >"
      },
      "alhsalaceNewPrimaryNeedsFromAwsInOpportunities": {
        "title": "alhsalaceNewPrimaryNeedsFromAwsInOpportunities",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<alhsalacePrimaryNeedsFromAws, 'id'>, 'opportunityId'>, schemaOptions: { title: 'alhsalaceNewPrimaryNeedsFromAwsInOpportunities', exclude: [ 'id' ], optional: [ 'opportunityId' ] })",
        "properties": {
          "need": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<alhsalacePrimaryNeedsFromAws, 'id'>, 'opportunityId'>"
      },
      "alhsalacePrimaryNeedsFromAwsPartial": {
        "title": "alhsalacePrimaryNeedsFromAwsPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalacePrimaryNeedsFromAws>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "need": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalacePrimaryNeedsFromAws>"
      },
      "alhsalaceOpportunityTeams": {
        "title": "alhsalaceOpportunityTeams",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceOpportunityTeams, >, schemaOptions: { exclude: [] })",
        "properties": {
          "email": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "firstName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "lastName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "phone": {
            "x-length": 15,
            "x-primary-key": false,
            "type": "string"
          },
          "title": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceOpportunityTeams, >"
      },
      "alhsalaceNewOpportunityTeamsInOpportunities": {
        "title": "alhsalaceNewOpportunityTeamsInOpportunities",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<alhsalaceOpportunityTeams, 'id'>, 'opportunityId'>, schemaOptions: { title: 'alhsalaceNewOpportunityTeamsInOpportunities', exclude: [ 'id' ], optional: [ 'opportunityId' ] })",
        "properties": {
          "email": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "firstName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "lastName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "phone": {
            "x-length": 15,
            "x-primary-key": false,
            "type": "string"
          },
          "title": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<alhsalaceOpportunityTeams, 'id'>, 'opportunityId'>"
      },
      "alhsalaceOpportunityTeamsPartial": {
        "title": "alhsalaceOpportunityTeamsPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalaceOpportunityTeams>, schemaOptions: { partial: true })",
        "properties": {
          "email": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "firstName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "lastName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "phone": {
            "x-length": 15,
            "x-primary-key": false,
            "type": "string"
          },
          "title": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalaceOpportunityTeams>"
      },
      "alhsalaceMarketingActivities": {
        "title": "alhsalaceMarketingActivities",
        "type": "object",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "isFromMarketingActivity": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "marketingCampaign": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "wasMarketingFundsUsed": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsalaceNewMarketingActivitiesInOpportunities": {
        "title": "alhsalaceNewMarketingActivitiesInOpportunities",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<alhsalaceMarketingActivities, 'id'>, 'opportunityId'>, schemaOptions: { title: 'alhsalaceNewMarketingActivitiesInOpportunities', exclude: [ 'id' ], optional: [ 'opportunityId' ] })",
        "properties": {
          "isFromMarketingActivity": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "marketingCampaign": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "wasMarketingFundsUsed": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<alhsalaceMarketingActivities, 'id'>, 'opportunityId'>"
      },
      "alhsalaceMarketingActivitiesPartial": {
        "title": "alhsalaceMarketingActivitiesPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalaceMarketingActivities>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "isFromMarketingActivity": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "marketingCampaign": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "wasMarketingFundsUsed": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalaceMarketingActivities>"
      },
      "alhsalaceCustomers": {
        "title": "alhsalaceCustomers",
        "type": "object",
        "properties": {
          "awsAccountId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "companyName": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "customerDuns": {
            "x-length": 9,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "industryOther": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "industryVertical": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "website": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "required": [
          "companyName"
        ],
        "additionalProperties": false
      },
      "alhsalaceAddresses": {
        "title": "alhsalaceAddresses",
        "type": "object",
        "properties": {
          "city": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "country": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "postalCode": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "state": {
            "x-primary-key": false,
            "type": "string"
          },
          "streetAddress": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "alhsalaceMarketingUseCases": {
        "title": "alhsalaceMarketingUseCases",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceMarketingUseCases, >, schemaOptions: { exclude: [] })",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "useCase": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceMarketingUseCases, >"
      },
      "alhsalaceNewMarketingUseCasesInMarketingActivities": {
        "title": "alhsalaceNewMarketingUseCasesInMarketingActivities",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<alhsalaceMarketingUseCases, 'id'>, 'marketingActivityId'>, schemaOptions: { title: 'alhsalaceNewMarketingUseCasesInMarketingActivities', exclude: [ 'id' ], optional: [ 'marketingActivityId' ] })",
        "properties": {
          "useCase": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<alhsalaceMarketingUseCases, 'id'>, 'marketingActivityId'>"
      },
      "alhsalaceMarketingUseCasesPartial": {
        "title": "alhsalaceMarketingUseCasesPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalaceMarketingUseCases>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "useCase": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalaceMarketingUseCases>"
      },
      "alhsalaceMarketingChannels": {
        "title": "alhsalaceMarketingChannels",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceMarketingChannels, >, schemaOptions: { exclude: [] })",
        "properties": {
          "channel": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceMarketingChannels, >"
      },
      "alhsalaceNewMarketingChannelsInMarketingActivities": {
        "title": "alhsalaceNewMarketingChannelsInMarketingActivities",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<alhsalaceMarketingChannels, 'id'>, 'marketingActivityId'>, schemaOptions: { title: 'alhsalaceNewMarketingChannelsInMarketingActivities', exclude: [ 'id' ], optional: [ 'marketingActivityId' ] })",
        "properties": {
          "channel": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<alhsalaceMarketingChannels, 'id'>, 'marketingActivityId'>"
      },
      "alhsalaceMarketingChannelsPartial": {
        "title": "alhsalaceMarketingChannelsPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalaceMarketingChannels>, schemaOptions: { partial: true })",
        "properties": {
          "channel": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalaceMarketingChannels>"
      },
      "alhsalaceContacts": {
        "title": "alhsalaceContacts",
        "type": "object",
        "properties": {
          "email": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "firstName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "lastName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "phone": {
            "x-length": 15,
            "x-primary-key": false,
            "type": "string"
          },
          "title": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsalaceNewContactsInCustomers": {
        "title": "alhsalaceNewContactsInCustomers",
        "type": "object",
        "description": "(tsType: @loopback/repository-json-schema#Optional<Omit<alhsalaceContacts, 'id'>, 'customerId'>, schemaOptions: { title: 'alhsalaceNewContactsInCustomers', exclude: [ 'id' ], optional: [ 'customerId' ] })",
        "properties": {
          "email": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "firstName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "lastName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "phone": {
            "x-length": 15,
            "x-primary-key": false,
            "type": "string"
          },
          "title": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository-json-schema#Optional<Omit<alhsalaceContacts, 'id'>, 'customerId'>"
      },
      "alhsalaceContactsPartial": {
        "title": "alhsalaceContactsPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalaceContacts>, schemaOptions: { partial: true })",
        "properties": {
          "email": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "firstName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "lastName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "phone": {
            "x-length": 15,
            "x-primary-key": false,
            "type": "string"
          },
          "title": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalaceContacts>"
      },
      "alhsalaceSyncEvents": {
        "title": "alhsalaceSyncEvents",
        "type": "object",
        "properties": {
          "awsOppId": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "errorMessage": {
            "x-length": 1000,
            "x-primary-key": false,
            "type": "string"
          },
          "eventDate": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "eventType": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "success": {
            "x-primary-key": false,
            "type": "boolean"
          },
          "syncDirection": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "alhsalaceSyncEventsWithRelations": {
        "title": "alhsalaceSyncEventsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceSyncEventsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "awsOppId": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "errorMessage": {
            "x-length": 1000,
            "x-primary-key": false,
            "type": "string"
          },
          "eventDate": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "eventType": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "success": {
            "x-primary-key": false,
            "type": "boolean"
          },
          "syncDirection": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceSyncEventsWithRelations, >"
      },
      "alhsalaceSolutionsOfferedWithRelations": {
        "title": "alhsalaceSolutionsOfferedWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceSolutionsOfferedWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "name": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceSolutionsOfferedWithRelations, >"
      },
      "alhsalaceNewSolutionsOffered": {
        "title": "alhsalaceNewSolutionsOffered",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceSolutionsOffered, 'id'>, schemaOptions: { title: 'alhsalaceNewSolutionsOffered', exclude: [ 'id' ] })",
        "properties": {
          "name": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceSolutionsOffered, 'id'>"
      },
      "alhsalaceProjectSalesActivitiesWithRelations": {
        "title": "alhsalaceProjectSalesActivitiesWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceProjectSalesActivitiesWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "activity": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceProjectSalesActivitiesWithRelations, >"
      },
      "alhsalaceNewProjectSalesActivities": {
        "title": "alhsalaceNewProjectSalesActivities",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceProjectSalesActivities, 'id'>, schemaOptions: { title: 'alhsalaceNewProjectSalesActivities', exclude: [ 'id' ] })",
        "properties": {
          "activity": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceProjectSalesActivities, 'id'>"
      },
      "alhsalaceProjectDetailsWithRelations": {
        "title": "alhsalaceProjectDetailsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceProjectDetailsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), ${JSON.stringify({ relationships })}",
        "properties": {
          "additionalComments": {
            "x-primary-key": false,
            "type": "string"
          },
          "apnPrograms": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "competitiveTracking": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "customerBusinessProblem": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "estimatedAwsMonthlyReccuringRevenue": {
            "x-primary-key": false,
            "type": "number"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "otherCompetitors": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "otherSolOffered": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "partnerProjectTitle": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "useCase": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "salesActivities": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/alhsalaceProjectSalesActivities"
            }
          },
          "deliveryModels": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/alhsalaceDeliveryModels"
            }
          },
          "solutionsOffered": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/alhsalaceSolutionsOffered"
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceProjectDetailsWithRelations, >"
      },
      "alhsalaceNewProjectDetails": {
        "title": "alhsalaceNewProjectDetails",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceProjectDetails, 'id'>, schemaOptions: { title: 'alhsalaceNewProjectDetails', exclude: [ 'id' ] })",
        "properties": {
          "additionalComments": {
            "x-primary-key": false,
            "type": "string"
          },
          "apnPrograms": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "competitiveTracking": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "customerBusinessProblem": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "estimatedAwsMonthlyReccuringRevenue": {
            "x-primary-key": false,
            "type": "number"
          },
          "otherCompetitors": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "otherSolOffered": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "partnerProjectTitle": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "useCase": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceProjectDetails, 'id'>"
      },
      "alhsalaceProjectDetailsPartial": {
        "title": "alhsalaceProjectDetailsPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalaceProjectDetails>, schemaOptions: { partial: true })",
        "properties": {
          "additionalComments": {
            "x-primary-key": false,
            "type": "string"
          },
          "apnPrograms": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "competitiveTracking": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "customerBusinessProblem": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "estimatedAwsMonthlyReccuringRevenue": {
            "x-primary-key": false,
            "type": "number"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "otherCompetitors": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "otherSolOffered": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "partnerProjectTitle": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "useCase": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalaceProjectDetails>"
      },
      "alhsalacePrimaryNeedsFromAwsWithRelations": {
        "title": "alhsalacePrimaryNeedsFromAwsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalacePrimaryNeedsFromAwsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "need": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalacePrimaryNeedsFromAwsWithRelations, >"
      },
      "alhsalaceNewPrimaryNeedsFromAws": {
        "title": "alhsalaceNewPrimaryNeedsFromAws",
        "type": "object",
        "description": "(tsType: Omit<alhsalacePrimaryNeedsFromAws, 'id'>, schemaOptions: { title: 'alhsalaceNewPrimaryNeedsFromAws', exclude: [ 'id' ] })",
        "properties": {
          "need": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalacePrimaryNeedsFromAws, 'id'>"
      },
      "alhsalaceOpportunityTeamsWithRelations": {
        "title": "alhsalaceOpportunityTeamsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceOpportunityTeamsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "email": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "firstName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "lastName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "phone": {
            "x-length": 15,
            "x-primary-key": false,
            "type": "string"
          },
          "title": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceOpportunityTeamsWithRelations, >"
      },
      "alhsalaceNewOpportunityTeams": {
        "title": "alhsalaceNewOpportunityTeams",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceOpportunityTeams, 'id'>, schemaOptions: { title: 'alhsalaceNewOpportunityTeams', exclude: [ 'id' ] })",
        "properties": {
          "email": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "firstName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "lastName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "phone": {
            "x-length": 15,
            "x-primary-key": false,
            "type": "string"
          },
          "title": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceOpportunityTeams, 'id'>"
      },
      "alhsalaceOpportunities": {
        "title": "alhsalaceOpportunities",
        "type": "object",
        "properties": {
          "awsOppId": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "awsStage": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "closed": {
            "x-length": 1,
            "x-primary-key": false,
            "type": "string"
          },
          "closedLostReason": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "createdDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "dealName": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "doesOppBelongToNatSec": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "lastSyncedToAws": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "nextSteps": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "nextStepsHistory": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "string"
            }
          },
          "opportunityType": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "origination": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "parentOppId": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "partnerCrmUniqueId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "partnerProjectTitle": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "reviewStatus": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "syncStatusAws": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "syncToAws": {
            "x-length": 1,
            "x-primary-key": false,
            "type": "string"
          },
          "syncedToSharedDb": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "targetCloseDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          },
          "projectId": {
            "x-primary-key": false,
            "type": "number"
          },
          "awsProductIds": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "number"
            }
          }
        },
        "additionalProperties": false
      },
      "alhsalaceAwsProduct": {
        "title": "alhsalaceAwsProduct",
        "type": "object",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "product": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "alhsalaceOpportunitiesWithRelations": {
        "title": "alhsalaceOpportunitiesWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceOpportunitiesWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), ${JSON.stringify({ relationships })}",
        "properties": {
          "awsOppId": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "awsStage": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "closed": {
            "x-length": 1,
            "x-primary-key": false,
            "type": "string"
          },
          "closedLostReason": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "createdDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "dealName": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "doesOppBelongToNatSec": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "lastSyncedToAws": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "nextSteps": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "nextStepsHistory": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "string"
            }
          },
          "opportunityType": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "origination": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "parentOppId": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "partnerCrmUniqueId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "partnerProjectTitle": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "reviewStatus": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "syncStatusAws": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "syncToAws": {
            "x-length": 1,
            "x-primary-key": false,
            "type": "string"
          },
          "syncedToSharedDb": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "targetCloseDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          },
          "projectId": {
            "x-primary-key": false,
            "type": "number"
          },
          "awsProductIds": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "number"
            }
          },
          "opportunityCustomer": {
            "$ref": "#/components/schemas/alhsalaceCustomers"
          },
          "address": {
            "$ref": "#/components/schemas/alhsalaceAddresses"
          },
          "project": {
            "$ref": "#/components/schemas/alhsalaceProjectDetails"
          },
          "marketing": {
            "$ref": "#/components/schemas/alhsalaceMarketingActivities"
          },
          "primaryNeedsFromAws": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/alhsalacePrimaryNeedsFromAws"
            }
          },
          "awsProducts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/alhsalaceAwsProduct"
            }
          },
          "opportunityTeams": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/alhsalaceOpportunityTeams"
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceOpportunitiesWithRelations, >"
      },
      "alhsalaceNewOpportunities": {
        "title": "alhsalaceNewOpportunities",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceOpportunities, 'id'>, schemaOptions: { title: 'alhsalaceNewOpportunities', exclude: [ 'id' ] })",
        "properties": {
          "awsOppId": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "awsStage": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "closed": {
            "x-length": 1,
            "x-primary-key": false,
            "type": "string"
          },
          "closedLostReason": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "createdDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "dealName": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "doesOppBelongToNatSec": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "lastSyncedToAws": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "nextSteps": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "nextStepsHistory": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "string"
            }
          },
          "opportunityType": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "origination": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "parentOppId": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "partnerCrmUniqueId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "partnerProjectTitle": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "reviewStatus": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "syncStatusAws": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "syncToAws": {
            "x-length": 1,
            "x-primary-key": false,
            "type": "string"
          },
          "syncedToSharedDb": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "targetCloseDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          },
          "projectId": {
            "x-primary-key": false,
            "type": "number"
          },
          "awsProductIds": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "number"
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceOpportunities, 'id'>"
      },
      "alhsalaceOpportunitiesPartial": {
        "title": "alhsalaceOpportunitiesPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalaceOpportunities>, schemaOptions: { partial: true })",
        "properties": {
          "awsOppId": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "awsStage": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "closed": {
            "x-length": 1,
            "x-primary-key": false,
            "type": "string"
          },
          "closedLostReason": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "createdDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "dealName": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "doesOppBelongToNatSec": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "lastSyncedToAws": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "nextSteps": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "nextStepsHistory": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "string"
            }
          },
          "opportunityType": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "origination": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "parentOppId": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "partnerCrmUniqueId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "partnerProjectTitle": {
            "x-length": 255,
            "x-primary-key": false,
            "type": "string"
          },
          "reviewStatus": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "syncStatusAws": {
            "x-length": 20,
            "x-primary-key": false,
            "type": "string"
          },
          "syncToAws": {
            "x-length": 1,
            "x-primary-key": false,
            "type": "string"
          },
          "syncedToSharedDb": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "targetCloseDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          },
          "projectId": {
            "x-primary-key": false,
            "type": "number"
          },
          "awsProductIds": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "number"
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalaceOpportunities>"
      },
      "alhsalaceMarketingUseCasesWithRelations": {
        "title": "alhsalaceMarketingUseCasesWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceMarketingUseCasesWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "useCase": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceMarketingUseCasesWithRelations, >"
      },
      "alhsalaceNewMarketingUseCases": {
        "title": "alhsalaceNewMarketingUseCases",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceMarketingUseCases, 'id'>, schemaOptions: { title: 'alhsalaceNewMarketingUseCases', exclude: [ 'id' ] })",
        "properties": {
          "useCase": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceMarketingUseCases, 'id'>"
      },
      "alhsalaceMarketingChannelsWithRelations": {
        "title": "alhsalaceMarketingChannelsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceMarketingChannelsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "channel": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceMarketingChannelsWithRelations, >"
      },
      "alhsalaceNewMarketingChannels": {
        "title": "alhsalaceNewMarketingChannels",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceMarketingChannels, 'id'>, schemaOptions: { title: 'alhsalaceNewMarketingChannels', exclude: [ 'id' ] })",
        "properties": {
          "channel": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceMarketingChannels, 'id'>"
      },
      "alhsalaceMarketingActivitiesWithRelations": {
        "title": "alhsalaceMarketingActivitiesWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceMarketingActivitiesWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), ${JSON.stringify({ relationships })}",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "isFromMarketingActivity": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "marketingCampaign": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "wasMarketingFundsUsed": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          },
          "channels": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/alhsalaceMarketingChannels"
            }
          },
          "useCases": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/alhsalaceMarketingUseCases"
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceMarketingActivitiesWithRelations, >"
      },
      "alhsalaceNewMarketingActivities": {
        "title": "alhsalaceNewMarketingActivities",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceMarketingActivities, 'id'>, schemaOptions: { title: 'alhsalaceNewMarketingActivities', exclude: [ 'id' ] })",
        "properties": {
          "isFromMarketingActivity": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "marketingCampaign": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "wasMarketingFundsUsed": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceMarketingActivities, 'id'>"
      },
      "alhsalaceGrappleAuditLog": {
        "title": "alhsalaceGrappleAuditLog",
        "type": "object",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "action": {
            "x-primary-key": false,
            "type": "string"
          },
          "actedAt": {
            "x-primary-key": false,
            "type": "string"
          },
          "actedOn": {
            "x-primary-key": false,
            "type": "string"
          },
          "actionKey": {
            "x-primary-key": false,
            "type": "string"
          },
          "entityId": {
            "x-primary-key": false,
            "type": "string"
          },
          "actor": {
            "x-primary-key": false,
            "type": "string"
          },
          "before": {
            "x-primary-key": false,
            "type": "string"
          },
          "after": {
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false
      },
      "alhsalaceGrappleAuditLogWithRelations": {
        "title": "alhsalaceGrappleAuditLogWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceGrappleAuditLogWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "action": {
            "x-primary-key": false,
            "type": "string"
          },
          "actedAt": {
            "x-primary-key": false,
            "type": "string"
          },
          "actedOn": {
            "x-primary-key": false,
            "type": "string"
          },
          "actionKey": {
            "x-primary-key": false,
            "type": "string"
          },
          "entityId": {
            "x-primary-key": false,
            "type": "string"
          },
          "actor": {
            "x-primary-key": false,
            "type": "string"
          },
          "before": {
            "x-primary-key": false,
            "type": "string"
          },
          "after": {
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceGrappleAuditLogWithRelations, >"
      },
      "alhsalaceDeliveryModelsWithRelations": {
        "title": "alhsalaceDeliveryModelsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceDeliveryModelsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "deliveryModel": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceDeliveryModelsWithRelations, >"
      },
      "alhsalaceNewDeliveryModels": {
        "title": "alhsalaceNewDeliveryModels",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceDeliveryModels, 'id'>, schemaOptions: { title: 'alhsalaceNewDeliveryModels', exclude: [ 'id' ] })",
        "properties": {
          "deliveryModel": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceDeliveryModels, 'id'>"
      },
      "alhsalaceCustomersWithRelations": {
        "title": "alhsalaceCustomersWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceCustomersWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] }), ${JSON.stringify({ relationships })}",
        "properties": {
          "awsAccountId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "companyName": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "customerDuns": {
            "x-length": 9,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "industryOther": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "industryVertical": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "website": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          },
          "address": {
            "$ref": "#/components/schemas/alhsalaceAddresses"
          },
          "contacts": {
            "type": "array",
            "items": {
              "$ref": "#/components/schemas/alhsalaceContacts"
            }
          }
        },
        "required": [
          "companyName"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceCustomersWithRelations, >"
      },
      "alhsalaceNewCustomers": {
        "title": "alhsalaceNewCustomers",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceCustomers, 'id'>, schemaOptions: { title: 'alhsalaceNewCustomers', exclude: [ 'id' ] })",
        "properties": {
          "awsAccountId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "companyName": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "customerDuns": {
            "x-length": 9,
            "x-primary-key": false,
            "type": "string"
          },
          "industryOther": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "industryVertical": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "website": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "required": [
          "companyName"
        ],
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceCustomers, 'id'>"
      },
      "alhsalaceCustomersPartial": {
        "title": "alhsalaceCustomersPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalaceCustomers>, schemaOptions: { partial: true })",
        "properties": {
          "awsAccountId": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "companyName": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "customerDuns": {
            "x-length": 9,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "industryOther": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "industryVertical": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "website": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalaceCustomers>"
      },
      "alhsalaceContactsWithRelations": {
        "title": "alhsalaceContactsWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceContactsWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "email": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "firstName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "lastName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "phone": {
            "x-length": 15,
            "x-primary-key": false,
            "type": "string"
          },
          "title": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceContactsWithRelations, >"
      },
      "alhsalaceNewContacts": {
        "title": "alhsalaceNewContacts",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceContacts, 'id'>, schemaOptions: { title: 'alhsalaceNewContacts', exclude: [ 'id' ] })",
        "properties": {
          "email": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "firstName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "lastName": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "phone": {
            "x-length": 15,
            "x-primary-key": false,
            "type": "string"
          },
          "title": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceContacts, 'id'>"
      },
      "alhsalaceAwsProductWithRelations": {
        "title": "alhsalaceAwsProductWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceAwsProductWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "product": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceAwsProductWithRelations, >"
      },
      "alhsalaceNewAwsProduct": {
        "title": "alhsalaceNewAwsProduct",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceAwsProduct, 'id'>, schemaOptions: { title: 'alhsalaceNewAwsProduct', exclude: [ 'id' ] })",
        "properties": {
          "product": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceAwsProduct, 'id'>"
      },
      "alhsalaceAwsProductPartial": {
        "title": "alhsalaceAwsProductPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalaceAwsProduct>, schemaOptions: { partial: true })",
        "properties": {
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "product": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalaceAwsProduct>"
      },
      "alhsalaceAddressesWithRelations": {
        "title": "alhsalaceAddressesWithRelations",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceAddressesWithRelations, >, schemaOptions: { includeRelations: true, exclude: [] })",
        "properties": {
          "city": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "country": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "postalCode": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "state": {
            "x-primary-key": false,
            "type": "string"
          },
          "streetAddress": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceAddressesWithRelations, >"
      },
      "alhsalaceNewAddresses": {
        "title": "alhsalaceNewAddresses",
        "type": "object",
        "description": "(tsType: Omit<alhsalaceAddresses, 'id'>, schemaOptions: { title: 'alhsalaceNewAddresses', exclude: [ 'id' ] })",
        "properties": {
          "city": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "country": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "postalCode": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "state": {
            "x-primary-key": false,
            "type": "string"
          },
          "streetAddress": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Omit<alhsalaceAddresses, 'id'>"
      },
      "alhsalaceAddressesPartial": {
        "title": "alhsalaceAddressesPartial",
        "type": "object",
        "description": "(tsType: Partial<alhsalaceAddresses>, schemaOptions: { partial: true })",
        "properties": {
          "city": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "country": {
            "x-length": 50,
            "x-primary-key": false,
            "type": "string"
          },
          "id": {
            "x-generated": true,
            "x-primary-key": true,
            "type": "number"
          },
          "postalCode": {
            "x-length": 10,
            "x-primary-key": false,
            "type": "string"
          },
          "state": {
            "x-primary-key": false,
            "type": "string"
          },
          "streetAddress": {
            "x-length": 100,
            "x-primary-key": false,
            "type": "string"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "Partial<alhsalaceAddresses>"
      },
      "alhsalaceloopback.Count": {
        "type": "object",
        "title": "alhsalaceloopback.Count",
        "x-typescript-type": "@loopback/repository#Count",
        "properties": {
          "count": {
            "type": "number"
          }
        }
      },
      "alhsalaceAddresses.Filter": {
        "type": "object",
        "title": "alhsalaceAddresses.Filter",
        "properties": {
          "where": {
            "title": "Addresses.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceAddresses>"
      },
      "alhsalaceAddresses.Filter1": {
        "type": "object",
        "title": "alhsalaceAddresses.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": {
                  "city": {
                    "type": "boolean"
                  },
                  "country": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "postalCode": {
                    "type": "boolean"
                  },
                  "state": {
                    "type": "boolean"
                  },
                  "streetAddress": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "city",
                    "country",
                    "id",
                    "postalCode",
                    "state",
                    "streetAddress"
                  ],
                  "example": "city"
                },
                "uniqueItems": true
              }
            ],
            "title": "Addresses.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceAddresses>"
      },
      "alhsalaceAddresses.Filter2": {
        "type": "object",
        "title": "alhsalaceAddresses.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": "Addresses.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "city": {
                    "type": "boolean"
                  },
                  "country": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "postalCode": {
                    "type": "boolean"
                  },
                  "state": {
                    "type": "boolean"
                  },
                  "streetAddress": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "city",
                    "country",
                    "id",
                    "postalCode",
                    "state",
                    "streetAddress"
                  ],
                  "example": "city"
                },
                "uniqueItems": true
              }
            ],
            "title": "Addresses.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceAddresses>"
      },
      "alhsalaceAwsProduct.Filter": {
        "type": "object",
        "title": "alhsalaceAwsProduct.Filter",
        "properties": {
          "where": {
            "title": "AwsProduct.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceAwsProduct>"
      },
      "alhsalaceAwsProduct.Filter1": {
        "type": "object",
        "title": "alhsalaceAwsProduct.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"
                  },
                  "product": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "product"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AwsProduct.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceAwsProduct>"
      },
      "alhsalaceAwsProduct.Filter2": {
        "type": "object",
        "title": "alhsalaceAwsProduct.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": "AwsProduct.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "product": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "product"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "AwsProduct.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceAwsProduct>"
      },
      "alhsalaceContacts.Filter": {
        "type": "object",
        "title": "alhsalaceContacts.Filter",
        "properties": {
          "where": {
            "title": "Contacts.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceContacts>"
      },
      "alhsalaceContacts.Filter1": {
        "type": "object",
        "title": "alhsalaceContacts.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": {
                  "email": {
                    "type": "boolean"
                  },
                  "firstName": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "lastName": {
                    "type": "boolean"
                  },
                  "phone": {
                    "type": "boolean"
                  },
                  "title": {
                    "type": "boolean"
                  },
                  "customerId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "email",
                    "firstName",
                    "id",
                    "lastName",
                    "phone",
                    "title",
                    "customerId"
                  ],
                  "example": "email"
                },
                "uniqueItems": true
              }
            ],
            "title": "Contacts.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceContacts>"
      },
      "alhsalaceContacts.Filter2": {
        "type": "object",
        "title": "alhsalaceContacts.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": "Contacts.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "email": {
                    "type": "boolean"
                  },
                  "firstName": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "lastName": {
                    "type": "boolean"
                  },
                  "phone": {
                    "type": "boolean"
                  },
                  "title": {
                    "type": "boolean"
                  },
                  "customerId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "email",
                    "firstName",
                    "id",
                    "lastName",
                    "phone",
                    "title",
                    "customerId"
                  ],
                  "example": "email"
                },
                "uniqueItems": true
              }
            ],
            "title": "Contacts.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceContacts>"
      },
      "alhsalaceCustomers.Filter": {
        "type": "object",
        "title": "alhsalaceCustomers.Filter",
        "properties": {
          "where": {
            "title": "Customers.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceCustomers>"
      },
      "alhsalaceCustomers.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": "alhsalaceCustomers.ScopeFilter"
      },
      "alhsalaceCustomers.IncludeFilter.Items": {
        "title": "alhsalaceCustomers.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "address",
              "contacts"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/alhsalaceCustomers.ScopeFilter"
          }
        }
      },
      "alhsalaceCustomers.Filter1": {
        "type": "object",
        "title": "alhsalaceCustomers.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": {
                  "awsAccountId": {
                    "type": "boolean"
                  },
                  "companyName": {
                    "type": "boolean"
                  },
                  "customerDuns": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "industryOther": {
                    "type": "boolean"
                  },
                  "industryVertical": {
                    "type": "boolean"
                  },
                  "website": {
                    "type": "boolean"
                  },
                  "addressId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "awsAccountId",
                    "companyName",
                    "customerDuns",
                    "id",
                    "industryOther",
                    "industryVertical",
                    "website",
                    "addressId"
                  ],
                  "example": "awsAccountId"
                },
                "uniqueItems": true
              }
            ],
            "title": "Customers.Fields"
          },
          "include": {
            "title": "Customers.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/alhsalaceCustomers.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceCustomers>"
      },
      "alhsalaceCustomers.Filter2": {
        "type": "object",
        "title": "alhsalaceCustomers.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": "Customers.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "awsAccountId": {
                    "type": "boolean"
                  },
                  "companyName": {
                    "type": "boolean"
                  },
                  "customerDuns": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "industryOther": {
                    "type": "boolean"
                  },
                  "industryVertical": {
                    "type": "boolean"
                  },
                  "website": {
                    "type": "boolean"
                  },
                  "addressId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "awsAccountId",
                    "companyName",
                    "customerDuns",
                    "id",
                    "industryOther",
                    "industryVertical",
                    "website",
                    "addressId"
                  ],
                  "example": "awsAccountId"
                },
                "uniqueItems": true
              }
            ],
            "title": "Customers.Fields"
          },
          "include": {
            "title": "Customers.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/alhsalaceCustomers.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceCustomers>"
      },
      "alhsalaceDeliveryModels.Filter": {
        "type": "object",
        "title": "alhsalaceDeliveryModels.Filter",
        "properties": {
          "where": {
            "title": "DeliveryModels.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceDeliveryModels>"
      },
      "alhsalaceDeliveryModels.Filter1": {
        "type": "object",
        "title": "alhsalaceDeliveryModels.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": {
                  "deliveryModel": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "projectDetailId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deliveryModel",
                    "id",
                    "projectDetailId"
                  ],
                  "example": "deliveryModel"
                },
                "uniqueItems": true
              }
            ],
            "title": "DeliveryModels.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceDeliveryModels>"
      },
      "alhsalaceDeliveryModels.Filter2": {
        "type": "object",
        "title": "alhsalaceDeliveryModels.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": "DeliveryModels.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "deliveryModel": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "projectDetailId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "deliveryModel",
                    "id",
                    "projectDetailId"
                  ],
                  "example": "deliveryModel"
                },
                "uniqueItems": true
              }
            ],
            "title": "DeliveryModels.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceDeliveryModels>"
      },
      "alhsalaceGrappleAuditLog.Filter": {
        "type": "object",
        "title": "alhsalaceGrappleAuditLog.Filter",
        "properties": {
          "where": {
            "title": "GrappleAuditLog.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceGrappleAuditLog>"
      },
      "alhsalaceGrappleAuditLog.Filter1": {
        "type": "object",
        "title": "alhsalaceGrappleAuditLog.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"
                  },
                  "action": {
                    "type": "boolean"
                  },
                  "actedAt": {
                    "type": "boolean"
                  },
                  "actedOn": {
                    "type": "boolean"
                  },
                  "actionKey": {
                    "type": "boolean"
                  },
                  "entityId": {
                    "type": "boolean"
                  },
                  "actor": {
                    "type": "boolean"
                  },
                  "before": {
                    "type": "boolean"
                  },
                  "after": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "action",
                    "actedAt",
                    "actedOn",
                    "actionKey",
                    "entityId",
                    "actor",
                    "before",
                    "after"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "GrappleAuditLog.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceGrappleAuditLog>"
      },
      "alhsalaceGrappleAuditLog.Filter2": {
        "type": "object",
        "title": "alhsalaceGrappleAuditLog.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": "GrappleAuditLog.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "action": {
                    "type": "boolean"
                  },
                  "actedAt": {
                    "type": "boolean"
                  },
                  "actedOn": {
                    "type": "boolean"
                  },
                  "actionKey": {
                    "type": "boolean"
                  },
                  "entityId": {
                    "type": "boolean"
                  },
                  "actor": {
                    "type": "boolean"
                  },
                  "before": {
                    "type": "boolean"
                  },
                  "after": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "action",
                    "actedAt",
                    "actedOn",
                    "actionKey",
                    "entityId",
                    "actor",
                    "before",
                    "after"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "GrappleAuditLog.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceGrappleAuditLog>"
      },
      "alhsalaceMarketingActivities.Filter": {
        "type": "object",
        "title": "alhsalaceMarketingActivities.Filter",
        "properties": {
          "where": {
            "title": "MarketingActivities.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceMarketingActivities>"
      },
      "alhsalaceMarketingActivities.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": "alhsalaceMarketingActivities.ScopeFilter"
      },
      "alhsalaceMarketingActivities.IncludeFilter.Items": {
        "title": "alhsalaceMarketingActivities.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "channels",
              "useCases"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/alhsalaceMarketingActivities.ScopeFilter"
          }
        }
      },
      "alhsalaceMarketingActivities.Filter1": {
        "type": "object",
        "title": "alhsalaceMarketingActivities.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"
                  },
                  "isFromMarketingActivity": {
                    "type": "boolean"
                  },
                  "marketingCampaign": {
                    "type": "boolean"
                  },
                  "wasMarketingFundsUsed": {
                    "type": "boolean"
                  },
                  "opportunityId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "isFromMarketingActivity",
                    "marketingCampaign",
                    "wasMarketingFundsUsed",
                    "opportunityId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "MarketingActivities.Fields"
          },
          "include": {
            "title": "MarketingActivities.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/alhsalaceMarketingActivities.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceMarketingActivities>"
      },
      "alhsalaceMarketingActivities.Filter2": {
        "type": "object",
        "title": "alhsalaceMarketingActivities.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": "MarketingActivities.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "isFromMarketingActivity": {
                    "type": "boolean"
                  },
                  "marketingCampaign": {
                    "type": "boolean"
                  },
                  "wasMarketingFundsUsed": {
                    "type": "boolean"
                  },
                  "opportunityId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "isFromMarketingActivity",
                    "marketingCampaign",
                    "wasMarketingFundsUsed",
                    "opportunityId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "MarketingActivities.Fields"
          },
          "include": {
            "title": "MarketingActivities.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/alhsalaceMarketingActivities.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceMarketingActivities>"
      },
      "alhsalaceMarketingChannels.Filter": {
        "type": "object",
        "title": "alhsalaceMarketingChannels.Filter",
        "properties": {
          "where": {
            "title": "MarketingChannels.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceMarketingChannels>"
      },
      "alhsalaceMarketingChannels.Filter1": {
        "type": "object",
        "title": "alhsalaceMarketingChannels.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": {
                  "channel": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "marketingActivityId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "channel",
                    "id",
                    "marketingActivityId"
                  ],
                  "example": "channel"
                },
                "uniqueItems": true
              }
            ],
            "title": "MarketingChannels.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceMarketingChannels>"
      },
      "alhsalaceMarketingChannels.Filter2": {
        "type": "object",
        "title": "alhsalaceMarketingChannels.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": "MarketingChannels.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "channel": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "marketingActivityId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "channel",
                    "id",
                    "marketingActivityId"
                  ],
                  "example": "channel"
                },
                "uniqueItems": true
              }
            ],
            "title": "MarketingChannels.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceMarketingChannels>"
      },
      "alhsalaceMarketingUseCases.Filter": {
        "type": "object",
        "title": "alhsalaceMarketingUseCases.Filter",
        "properties": {
          "where": {
            "title": "MarketingUseCases.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceMarketingUseCases>"
      },
      "alhsalaceMarketingUseCases.Filter1": {
        "type": "object",
        "title": "alhsalaceMarketingUseCases.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"
                  },
                  "useCase": {
                    "type": "boolean"
                  },
                  "marketingActivityId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "useCase",
                    "marketingActivityId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "MarketingUseCases.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceMarketingUseCases>"
      },
      "alhsalaceMarketingUseCases.Filter2": {
        "type": "object",
        "title": "alhsalaceMarketingUseCases.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": "MarketingUseCases.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "useCase": {
                    "type": "boolean"
                  },
                  "marketingActivityId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "useCase",
                    "marketingActivityId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "MarketingUseCases.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceMarketingUseCases>"
      },
      "alhsalaceOpportunities.Filter": {
        "type": "object",
        "title": "alhsalaceOpportunities.Filter",
        "properties": {
          "where": {
            "title": "Opportunities.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceOpportunities>"
      },
      "alhsalaceOpportunities.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": "alhsalaceOpportunities.ScopeFilter"
      },
      "alhsalaceOpportunities.IncludeFilter.Items": {
        "title": "alhsalaceOpportunities.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "opportunityCustomer",
              "address",
              "project",
              "marketing",
              "primaryNeedsFromAws",
              "awsProducts",
              "opportunityTeams"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/alhsalaceOpportunities.ScopeFilter"
          }
        }
      },
      "alhsalaceOpportunities.Filter1": {
        "type": "object",
        "title": "alhsalaceOpportunities.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": {
                  "awsOppId": {
                    "type": "boolean"
                  },
                  "awsStage": {
                    "type": "boolean"
                  },
                  "closed": {
                    "type": "boolean"
                  },
                  "closedLostReason": {
                    "type": "boolean"
                  },
                  "createdDate": {
                    "type": "boolean"
                  },
                  "dealName": {
                    "type": "boolean"
                  },
                  "doesOppBelongToNatSec": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "lastSyncedToAws": {
                    "type": "boolean"
                  },
                  "nextSteps": {
                    "type": "boolean"
                  },
                  "nextStepsHistory": {
                    "type": "boolean"
                  },
                  "opportunityType": {
                    "type": "boolean"
                  },
                  "origination": {
                    "type": "boolean"
                  },
                  "parentOppId": {
                    "type": "boolean"
                  },
                  "partnerCrmUniqueId": {
                    "type": "boolean"
                  },
                  "partnerProjectTitle": {
                    "type": "boolean"
                  },
                  "reviewStatus": {
                    "type": "boolean"
                  },
                  "syncStatusAws": {
                    "type": "boolean"
                  },
                  "syncToAws": {
                    "type": "boolean"
                  },
                  "syncedToSharedDb": {
                    "type": "boolean"
                  },
                  "targetCloseDate": {
                    "type": "boolean"
                  },
                  "customerId": {
                    "type": "boolean"
                  },
                  "addressId": {
                    "type": "boolean"
                  },
                  "projectId": {
                    "type": "boolean"
                  },
                  "awsProductIds": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "awsOppId",
                    "awsStage",
                    "closed",
                    "closedLostReason",
                    "createdDate",
                    "dealName",
                    "doesOppBelongToNatSec",
                    "id",
                    "lastSyncedToAws",
                    "nextSteps",
                    "nextStepsHistory",
                    "opportunityType",
                    "origination",
                    "parentOppId",
                    "partnerCrmUniqueId",
                    "partnerProjectTitle",
                    "reviewStatus",
                    "syncStatusAws",
                    "syncToAws",
                    "syncedToSharedDb",
                    "targetCloseDate",
                    "customerId",
                    "addressId",
                    "projectId",
                    "awsProductIds"
                  ],
                  "example": "awsOppId"
                },
                "uniqueItems": true
              }
            ],
            "title": "Opportunities.Fields"
          },
          "include": {
            "title": "Opportunities.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/alhsalaceOpportunities.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceOpportunities>"
      },
      "alhsalaceOpportunities.Filter2": {
        "type": "object",
        "title": "alhsalaceOpportunities.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": "Opportunities.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "awsOppId": {
                    "type": "boolean"
                  },
                  "awsStage": {
                    "type": "boolean"
                  },
                  "closed": {
                    "type": "boolean"
                  },
                  "closedLostReason": {
                    "type": "boolean"
                  },
                  "createdDate": {
                    "type": "boolean"
                  },
                  "dealName": {
                    "type": "boolean"
                  },
                  "doesOppBelongToNatSec": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "lastSyncedToAws": {
                    "type": "boolean"
                  },
                  "nextSteps": {
                    "type": "boolean"
                  },
                  "nextStepsHistory": {
                    "type": "boolean"
                  },
                  "opportunityType": {
                    "type": "boolean"
                  },
                  "origination": {
                    "type": "boolean"
                  },
                  "parentOppId": {
                    "type": "boolean"
                  },
                  "partnerCrmUniqueId": {
                    "type": "boolean"
                  },
                  "partnerProjectTitle": {
                    "type": "boolean"
                  },
                  "reviewStatus": {
                    "type": "boolean"
                  },
                  "syncStatusAws": {
                    "type": "boolean"
                  },
                  "syncToAws": {
                    "type": "boolean"
                  },
                  "syncedToSharedDb": {
                    "type": "boolean"
                  },
                  "targetCloseDate": {
                    "type": "boolean"
                  },
                  "customerId": {
                    "type": "boolean"
                  },
                  "addressId": {
                    "type": "boolean"
                  },
                  "projectId": {
                    "type": "boolean"
                  },
                  "awsProductIds": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "awsOppId",
                    "awsStage",
                    "closed",
                    "closedLostReason",
                    "createdDate",
                    "dealName",
                    "doesOppBelongToNatSec",
                    "id",
                    "lastSyncedToAws",
                    "nextSteps",
                    "nextStepsHistory",
                    "opportunityType",
                    "origination",
                    "parentOppId",
                    "partnerCrmUniqueId",
                    "partnerProjectTitle",
                    "reviewStatus",
                    "syncStatusAws",
                    "syncToAws",
                    "syncedToSharedDb",
                    "targetCloseDate",
                    "customerId",
                    "addressId",
                    "projectId",
                    "awsProductIds"
                  ],
                  "example": "awsOppId"
                },
                "uniqueItems": true
              }
            ],
            "title": "Opportunities.Fields"
          },
          "include": {
            "title": "Opportunities.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/alhsalaceOpportunities.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceOpportunities>"
      },
      "alhsalaceOpportunityTeams.Filter": {
        "type": "object",
        "title": "alhsalaceOpportunityTeams.Filter",
        "properties": {
          "where": {
            "title": "OpportunityTeams.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceOpportunityTeams>"
      },
      "alhsalaceOpportunityTeams.Filter1": {
        "type": "object",
        "title": "alhsalaceOpportunityTeams.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": {
                  "email": {
                    "type": "boolean"
                  },
                  "firstName": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "lastName": {
                    "type": "boolean"
                  },
                  "phone": {
                    "type": "boolean"
                  },
                  "title": {
                    "type": "boolean"
                  },
                  "opportunityId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "email",
                    "firstName",
                    "id",
                    "lastName",
                    "phone",
                    "title",
                    "opportunityId"
                  ],
                  "example": "email"
                },
                "uniqueItems": true
              }
            ],
            "title": "OpportunityTeams.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceOpportunityTeams>"
      },
      "alhsalaceOpportunityTeams.Filter2": {
        "type": "object",
        "title": "alhsalaceOpportunityTeams.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": "OpportunityTeams.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "email": {
                    "type": "boolean"
                  },
                  "firstName": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "lastName": {
                    "type": "boolean"
                  },
                  "phone": {
                    "type": "boolean"
                  },
                  "title": {
                    "type": "boolean"
                  },
                  "opportunityId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "email",
                    "firstName",
                    "id",
                    "lastName",
                    "phone",
                    "title",
                    "opportunityId"
                  ],
                  "example": "email"
                },
                "uniqueItems": true
              }
            ],
            "title": "OpportunityTeams.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceOpportunityTeams>"
      },
      "alhsalacePingResponse": {
        "type": "object",
        "title": "alhsalacePingResponse",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "alhsalacePing2Response": {
        "type": "object",
        "title": "alhsalacePing2Response",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "alhsalacePrimaryNeedsFromAws.Filter": {
        "type": "object",
        "title": "alhsalacePrimaryNeedsFromAws.Filter",
        "properties": {
          "where": {
            "title": "PrimaryNeedsFromAws.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalacePrimaryNeedsFromAws>"
      },
      "alhsalacePrimaryNeedsFromAws.Filter1": {
        "type": "object",
        "title": "alhsalacePrimaryNeedsFromAws.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"
                  },
                  "need": {
                    "type": "boolean"
                  },
                  "opportunityId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "need",
                    "opportunityId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "PrimaryNeedsFromAws.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalacePrimaryNeedsFromAws>"
      },
      "alhsalacePrimaryNeedsFromAws.Filter2": {
        "type": "object",
        "title": "alhsalacePrimaryNeedsFromAws.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": "PrimaryNeedsFromAws.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "need": {
                    "type": "boolean"
                  },
                  "opportunityId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "need",
                    "opportunityId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "PrimaryNeedsFromAws.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalacePrimaryNeedsFromAws>"
      },
      "alhsalaceProjectDetails.Filter": {
        "type": "object",
        "title": "alhsalaceProjectDetails.Filter",
        "properties": {
          "where": {
            "title": "ProjectDetails.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceProjectDetails>"
      },
      "alhsalaceProjectDetails.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": "alhsalaceProjectDetails.ScopeFilter"
      },
      "alhsalaceProjectDetails.IncludeFilter.Items": {
        "title": "alhsalaceProjectDetails.IncludeFilter.Items",
        "type": "object",
        "properties": {
          "relation": {
            "type": "string",
            "enum": [
              "salesActivities",
              "deliveryModels",
              "solutionsOffered"
            ]
          },
          "scope": {
            "$ref": "#/components/schemas/alhsalaceProjectDetails.ScopeFilter"
          }
        }
      },
      "alhsalaceProjectDetails.Filter1": {
        "type": "object",
        "title": "alhsalaceProjectDetails.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": {
                  "additionalComments": {
                    "type": "boolean"
                  },
                  "apnPrograms": {
                    "type": "boolean"
                  },
                  "competitiveTracking": {
                    "type": "boolean"
                  },
                  "customerBusinessProblem": {
                    "type": "boolean"
                  },
                  "estimatedAwsMonthlyReccuringRevenue": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "otherCompetitors": {
                    "type": "boolean"
                  },
                  "otherSolOffered": {
                    "type": "boolean"
                  },
                  "partnerProjectTitle": {
                    "type": "boolean"
                  },
                  "useCase": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "additionalComments",
                    "apnPrograms",
                    "competitiveTracking",
                    "customerBusinessProblem",
                    "estimatedAwsMonthlyReccuringRevenue",
                    "id",
                    "otherCompetitors",
                    "otherSolOffered",
                    "partnerProjectTitle",
                    "useCase"
                  ],
                  "example": "additionalComments"
                },
                "uniqueItems": true
              }
            ],
            "title": "ProjectDetails.Fields"
          },
          "include": {
            "title": "ProjectDetails.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/alhsalaceProjectDetails.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceProjectDetails>"
      },
      "alhsalaceProjectDetails.Filter2": {
        "type": "object",
        "title": "alhsalaceProjectDetails.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": "ProjectDetails.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "additionalComments": {
                    "type": "boolean"
                  },
                  "apnPrograms": {
                    "type": "boolean"
                  },
                  "competitiveTracking": {
                    "type": "boolean"
                  },
                  "customerBusinessProblem": {
                    "type": "boolean"
                  },
                  "estimatedAwsMonthlyReccuringRevenue": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "otherCompetitors": {
                    "type": "boolean"
                  },
                  "otherSolOffered": {
                    "type": "boolean"
                  },
                  "partnerProjectTitle": {
                    "type": "boolean"
                  },
                  "useCase": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "additionalComments",
                    "apnPrograms",
                    "competitiveTracking",
                    "customerBusinessProblem",
                    "estimatedAwsMonthlyReccuringRevenue",
                    "id",
                    "otherCompetitors",
                    "otherSolOffered",
                    "partnerProjectTitle",
                    "useCase"
                  ],
                  "example": "additionalComments"
                },
                "uniqueItems": true
              }
            ],
            "title": "ProjectDetails.Fields"
          },
          "include": {
            "title": "ProjectDetails.IncludeFilter",
            "type": "array",
            "items": {
              "anyOf": [
                {
                  "$ref": "#/components/schemas/alhsalaceProjectDetails.IncludeFilter.Items"
                },
                {
                  "type": "string"
                }
              ]
            }
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceProjectDetails>"
      },
      "alhsalaceProjectSalesActivities.Filter": {
        "type": "object",
        "title": "alhsalaceProjectSalesActivities.Filter",
        "properties": {
          "where": {
            "title": "ProjectSalesActivities.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceProjectSalesActivities>"
      },
      "alhsalaceProjectSalesActivities.Filter1": {
        "type": "object",
        "title": "alhsalaceProjectSalesActivities.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": {
                  "activity": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "projectDetailId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "activity",
                    "id",
                    "projectDetailId"
                  ],
                  "example": "activity"
                },
                "uniqueItems": true
              }
            ],
            "title": "ProjectSalesActivities.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceProjectSalesActivities>"
      },
      "alhsalaceProjectSalesActivities.Filter2": {
        "type": "object",
        "title": "alhsalaceProjectSalesActivities.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": "ProjectSalesActivities.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "activity": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "projectDetailId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "activity",
                    "id",
                    "projectDetailId"
                  ],
                  "example": "activity"
                },
                "uniqueItems": true
              }
            ],
            "title": "ProjectSalesActivities.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceProjectSalesActivities>"
      },
      "alhsalaceSolutionsOffered.Filter": {
        "type": "object",
        "title": "alhsalaceSolutionsOffered.Filter",
        "properties": {
          "where": {
            "title": "SolutionsOffered.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceSolutionsOffered>"
      },
      "alhsalaceSolutionsOffered.Filter1": {
        "type": "object",
        "title": "alhsalaceSolutionsOffered.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"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "projectDetailId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "name",
                    "projectDetailId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "SolutionsOffered.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceSolutionsOffered>"
      },
      "alhsalaceSolutionsOffered.Filter2": {
        "type": "object",
        "title": "alhsalaceSolutionsOffered.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": "SolutionsOffered.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "id": {
                    "type": "boolean"
                  },
                  "name": {
                    "type": "boolean"
                  },
                  "projectDetailId": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "id",
                    "name",
                    "projectDetailId"
                  ],
                  "example": "id"
                },
                "uniqueItems": true
              }
            ],
            "title": "SolutionsOffered.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceSolutionsOffered>"
      },
      "alhsalaceSyncEvents.Filter": {
        "type": "object",
        "title": "alhsalaceSyncEvents.Filter",
        "properties": {
          "where": {
            "title": "SyncEvents.WhereFilter",
            "type": "object",
            "additionalProperties": true
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceSyncEvents>"
      },
      "alhsalaceSyncEvents.Filter1": {
        "type": "object",
        "title": "alhsalaceSyncEvents.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": {
                  "awsOppId": {
                    "type": "boolean"
                  },
                  "errorMessage": {
                    "type": "boolean"
                  },
                  "eventDate": {
                    "type": "boolean"
                  },
                  "eventType": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "success": {
                    "type": "boolean"
                  },
                  "syncDirection": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "awsOppId",
                    "errorMessage",
                    "eventDate",
                    "eventType",
                    "id",
                    "success",
                    "syncDirection"
                  ],
                  "example": "awsOppId"
                },
                "uniqueItems": true
              }
            ],
            "title": "SyncEvents.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceSyncEvents>"
      },
      "alhsalaceSyncEvents.Filter2": {
        "type": "object",
        "title": "alhsalaceSyncEvents.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": "SyncEvents.WhereFilter",
            "type": "object",
            "additionalProperties": true
          },
          "fields": {
            "oneOf": [
              {
                "type": "object",
                "properties": {
                  "awsOppId": {
                    "type": "boolean"
                  },
                  "errorMessage": {
                    "type": "boolean"
                  },
                  "eventDate": {
                    "type": "boolean"
                  },
                  "eventType": {
                    "type": "boolean"
                  },
                  "id": {
                    "type": "boolean"
                  },
                  "success": {
                    "type": "boolean"
                  },
                  "syncDirection": {
                    "type": "boolean"
                  }
                },
                "additionalProperties": false
              },
              {
                "type": "array",
                "items": {
                  "type": "string",
                  "enum": [
                    "awsOppId",
                    "errorMessage",
                    "eventDate",
                    "eventType",
                    "id",
                    "success",
                    "syncDirection"
                  ],
                  "example": "awsOppId"
                },
                "uniqueItems": true
              }
            ],
            "title": "SyncEvents.Fields"
          }
        },
        "additionalProperties": false,
        "x-typescript-type": "@loopback/repository#Filter<alhsalaceSyncEvents>"
      },
      "alhsAlaceSolutionsOffered": {
        "title": "alhsAlaceSolutionsOffered",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceSolutionsOfferedPartial": {
        "title": "alhsAlaceSolutionsOfferedPartial",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewSolutionsOffered": {
        "title": "alhsAlaceNewSolutionsOffered",
        "type": "object",
        "properties": {
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceProjectSalesActivities": {
        "title": "alhsAlaceProjectSalesActivities",
        "type": "object",
        "properties": {
          "activity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceProjectSalesActivitiesPartial": {
        "title": "alhsAlaceProjectSalesActivitiesPartial",
        "type": "object",
        "properties": {
          "activity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewProjectSalesActivities": {
        "title": "alhsAlaceNewProjectSalesActivities",
        "type": "object",
        "properties": {
          "activity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceProjectDetails": {
        "title": "alhsAlaceProjectDetails",
        "type": "object",
        "properties": {
          "additionalComments": {
            "x-primary-key": false,
            "type": "string"
          },
          "apnPrograms": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "competitiveTracking": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerBusinessProblem": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "estimatedAwsMonthlyReccuringRevenue": {
            "x-primary-key": false,
            "type": "number"
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "otherCompetitors": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "otherSolOffered": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "partnerProjectTitle": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceProjectDetailsPartial": {
        "title": "alhsAlaceProjectDetailsPartial",
        "type": "object",
        "properties": {
          "additionalComments": {
            "x-primary-key": false,
            "type": "string"
          },
          "apnPrograms": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "competitiveTracking": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerBusinessProblem": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "estimatedAwsMonthlyReccuringRevenue": {
            "x-primary-key": false,
            "type": "number"
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "otherCompetitors": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "otherSolOffered": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "partnerProjectTitle": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewProjectDetails": {
        "title": "alhsAlaceNewProjectDetails",
        "type": "object",
        "properties": {
          "additionalComments": {
            "x-primary-key": false,
            "type": "string"
          },
          "apnPrograms": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "competitiveTracking": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerBusinessProblem": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "estimatedAwsMonthlyReccuringRevenue": {
            "x-primary-key": false,
            "type": "number"
          },
          "otherCompetitors": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "otherSolOffered": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "partnerProjectTitle": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewSolutionsOfferedInProjectDetails": {
        "title": "alhsAlaceNewSolutionsOfferedInProjectDetails",
        "type": "object",
        "properties": {
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewProjectSalesActivitiesInProjectDetails": {
        "title": "alhsAlaceNewProjectSalesActivitiesInProjectDetails",
        "type": "object",
        "properties": {
          "activity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewDeliveryModelsInProjectDetails": {
        "title": "alhsAlaceNewDeliveryModelsInProjectDetails",
        "type": "object",
        "properties": {
          "deliveryModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceDeliveryModelsPartial": {
        "title": "alhsAlaceDeliveryModelsPartial",
        "type": "object",
        "properties": {
          "deliveryModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlacePrimaryNeedsFromAws": {
        "title": "alhsAlacePrimaryNeedsFromAws",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "need": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlacePrimaryNeedsFromAwsPartial": {
        "title": "alhsAlacePrimaryNeedsFromAwsPartial",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "need": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewPrimaryNeedsFromAws": {
        "title": "alhsAlaceNewPrimaryNeedsFromAws",
        "type": "object",
        "properties": {
          "need": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceOpportunityTeams": {
        "title": "alhsAlaceOpportunityTeams",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceOpportunityTeamsPartial": {
        "title": "alhsAlaceOpportunityTeamsPartial",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewOpportunityTeams": {
        "title": "alhsAlaceNewOpportunityTeams",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceOpportunities": {
        "title": "alhsAlaceOpportunities",
        "type": "object",
        "properties": {
          "awsOppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "awsStage": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "closed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1
          },
          "closedLostReason": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "createdDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "dealName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "doesOppBelongToNatSec": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "lastSyncedToAws": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "nextSteps": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "nextStepsHistory": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "opportunityType": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "origination": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "parentOppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "partnerCrmUniqueId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "partnerProjectTitle": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "reviewStatus": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "syncStatusAws": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "syncToAws": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1
          },
          "syncedToSharedDb": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "targetCloseDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          },
          "projectId": {
            "x-primary-key": false,
            "type": "number"
          },
          "awsProductIds": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "number"
              }
            }
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceOpportunitiesPartial": {
        "title": "alhsAlaceOpportunitiesPartial",
        "type": "object",
        "properties": {
          "awsOppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "awsStage": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "closed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1
          },
          "closedLostReason": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "createdDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "dealName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "doesOppBelongToNatSec": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "lastSyncedToAws": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "nextSteps": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "nextStepsHistory": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "opportunityType": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "origination": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "parentOppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "partnerCrmUniqueId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "partnerProjectTitle": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "reviewStatus": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "syncStatusAws": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "syncToAws": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1
          },
          "syncedToSharedDb": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "targetCloseDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          },
          "projectId": {
            "x-primary-key": false,
            "type": "number"
          },
          "awsProductIds": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "number"
              }
            }
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewOpportunities": {
        "title": "alhsAlaceNewOpportunities",
        "type": "object",
        "properties": {
          "awsOppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "awsStage": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "closed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1
          },
          "closedLostReason": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "createdDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "dealName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "doesOppBelongToNatSec": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "lastSyncedToAws": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "nextSteps": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "nextStepsHistory": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "opportunityType": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "origination": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "parentOppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "partnerCrmUniqueId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "partnerProjectTitle": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "reviewStatus": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "syncStatusAws": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "syncToAws": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1
          },
          "syncedToSharedDb": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "targetCloseDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          },
          "projectId": {
            "x-primary-key": false,
            "type": "number"
          },
          "awsProductIds": {
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "number"
              }
            }
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewPrimaryNeedsFromAwsInOpportunities": {
        "title": "alhsAlaceNewPrimaryNeedsFromAwsInOpportunities",
        "type": "object",
        "properties": {
          "need": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewOpportunityTeamsInOpportunities": {
        "title": "alhsAlaceNewOpportunityTeamsInOpportunities",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewMarketingActivitiesInOpportunities": {
        "title": "alhsAlaceNewMarketingActivitiesInOpportunities",
        "type": "object",
        "properties": {
          "isFromMarketingActivity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingCampaign": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "wasMarketingFundsUsed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceMarketingActivitiesPartial": {
        "title": "alhsAlaceMarketingActivitiesPartial",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "isFromMarketingActivity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingCampaign": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "wasMarketingFundsUsed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceMarketingUseCases": {
        "title": "alhsAlaceMarketingUseCases",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceMarketingUseCasesPartial": {
        "title": "alhsAlaceMarketingUseCasesPartial",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewMarketingUseCases": {
        "title": "alhsAlaceNewMarketingUseCases",
        "type": "object",
        "properties": {
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceMarketingChannels": {
        "title": "alhsAlaceMarketingChannels",
        "type": "object",
        "properties": {
          "channel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceMarketingChannelsPartial": {
        "title": "alhsAlaceMarketingChannelsPartial",
        "type": "object",
        "properties": {
          "channel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewMarketingChannels": {
        "title": "alhsAlaceNewMarketingChannels",
        "type": "object",
        "properties": {
          "channel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceMarketingActivities": {
        "title": "alhsAlaceMarketingActivities",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "isFromMarketingActivity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingCampaign": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "wasMarketingFundsUsed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewMarketingActivities": {
        "title": "alhsAlaceNewMarketingActivities",
        "type": "object",
        "properties": {
          "isFromMarketingActivity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingCampaign": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "wasMarketingFundsUsed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewMarketingUseCasesInMarketingActivities": {
        "title": "alhsAlaceNewMarketingUseCasesInMarketingActivities",
        "type": "object",
        "properties": {
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewMarketingChannelsInMarketingActivities": {
        "title": "alhsAlaceNewMarketingChannelsInMarketingActivities",
        "type": "object",
        "properties": {
          "channel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceDeliveryModels": {
        "title": "alhsAlaceDeliveryModels",
        "type": "object",
        "properties": {
          "deliveryModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewDeliveryModels": {
        "title": "alhsAlaceNewDeliveryModels",
        "type": "object",
        "properties": {
          "deliveryModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceCustomers": {
        "title": "alhsAlaceCustomers",
        "type": "object",
        "properties": {
          "awsAccountId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "companyName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "customerDuns": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 9
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "industryOther": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "industryVertical": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "website": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "required": [
          "companyName"
        ],
        "additionalProperties": false
      },
      "alhsAlaceCustomersPartial": {
        "title": "alhsAlaceCustomersPartial",
        "type": "object",
        "properties": {
          "awsAccountId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "companyName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "customerDuns": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 9
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "industryOther": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "industryVertical": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "website": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewCustomers": {
        "title": "alhsAlaceNewCustomers",
        "type": "object",
        "properties": {
          "awsAccountId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "companyName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "customerDuns": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 9
          },
          "industryOther": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "industryVertical": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "website": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "required": [
          "companyName"
        ],
        "additionalProperties": false
      },
      "alhsAlaceNewContactsInCustomers": {
        "title": "alhsAlaceNewContactsInCustomers",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceContactsPartial": {
        "title": "alhsAlaceContactsPartial",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceContacts": {
        "title": "alhsAlaceContacts",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewContacts": {
        "title": "alhsAlaceNewContacts",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceAwsProduct": {
        "title": "alhsAlaceAwsProduct",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "product": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceAwsProductPartial": {
        "title": "alhsAlaceAwsProductPartial",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "product": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewAwsProduct": {
        "title": "alhsAlaceNewAwsProduct",
        "type": "object",
        "properties": {
          "product": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceAddresses": {
        "title": "alhsAlaceAddresses",
        "type": "object",
        "properties": {
          "city": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "country": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "postalCode": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "state": {
            "x-primary-key": false,
            "type": "string"
          },
          "streetAddress": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceAddressesPartial": {
        "title": "alhsAlaceAddressesPartial",
        "type": "object",
        "properties": {
          "city": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "country": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "postalCode": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "state": {
            "x-primary-key": false,
            "type": "string"
          },
          "streetAddress": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "alhsAlaceNewAddresses": {
        "title": "alhsAlaceNewAddresses",
        "type": "object",
        "properties": {
          "city": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "country": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "postalCode": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "state": {
            "x-primary-key": false,
            "type": "string"
          },
          "streetAddress": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "alhsPingResponse": {
        "type": "object",
        "title": "alhsPingResponse",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "alhsPing2Response": {
        "type": "object",
        "title": "alhsPing2Response",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "AlhsAlaceSolutionsOffered": {
        "title": "AlhsAlaceSolutionsOffered",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceSolutionsOfferedPartial": {
        "title": "AlhsAlaceSolutionsOfferedPartial",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewSolutionsOffered": {
        "title": "AlhsAlaceNewSolutionsOffered",
        "type": "object",
        "properties": {
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceProjectSalesActivities": {
        "title": "AlhsAlaceProjectSalesActivities",
        "type": "object",
        "properties": {
          "activity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceProjectSalesActivitiesPartial": {
        "title": "AlhsAlaceProjectSalesActivitiesPartial",
        "type": "object",
        "properties": {
          "activity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewProjectSalesActivities": {
        "title": "AlhsAlaceNewProjectSalesActivities",
        "type": "object",
        "properties": {
          "activity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceProjectDetails": {
        "title": "AlhsAlaceProjectDetails",
        "type": "object",
        "properties": {
          "additionalComments": {
            "x-primary-key": false,
            "type": "string"
          },
          "apnPrograms": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "competitiveTracking": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerBusinessProblem": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "estimatedAwsMonthlyReccuringRevenue": {
            "x-primary-key": false,
            "type": "number"
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "otherCompetitors": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "otherSolOffered": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "partnerProjectTitle": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceProjectDetailsPartial": {
        "title": "AlhsAlaceProjectDetailsPartial",
        "type": "object",
        "properties": {
          "additionalComments": {
            "x-primary-key": false,
            "type": "string"
          },
          "apnPrograms": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "competitiveTracking": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerBusinessProblem": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "estimatedAwsMonthlyReccuringRevenue": {
            "x-primary-key": false,
            "type": "number"
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "otherCompetitors": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "otherSolOffered": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "partnerProjectTitle": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewProjectDetails": {
        "title": "AlhsAlaceNewProjectDetails",
        "type": "object",
        "properties": {
          "additionalComments": {
            "x-primary-key": false,
            "type": "string"
          },
          "apnPrograms": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "competitiveTracking": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerBusinessProblem": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "estimatedAwsMonthlyReccuringRevenue": {
            "x-primary-key": false,
            "type": "number"
          },
          "otherCompetitors": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "otherSolOffered": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "partnerProjectTitle": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewSolutionsOfferedInProjectDetails": {
        "title": "AlhsAlaceNewSolutionsOfferedInProjectDetails",
        "type": "object",
        "properties": {
          "name": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewProjectSalesActivitiesInProjectDetails": {
        "title": "AlhsAlaceNewProjectSalesActivitiesInProjectDetails",
        "type": "object",
        "properties": {
          "activity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewDeliveryModelsInProjectDetails": {
        "title": "AlhsAlaceNewDeliveryModelsInProjectDetails",
        "type": "object",
        "properties": {
          "deliveryModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceDeliveryModelsPartial": {
        "title": "AlhsAlaceDeliveryModelsPartial",
        "type": "object",
        "properties": {
          "deliveryModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlacePrimaryNeedsFromAws": {
        "title": "AlhsAlacePrimaryNeedsFromAws",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "need": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlacePrimaryNeedsFromAwsPartial": {
        "title": "AlhsAlacePrimaryNeedsFromAwsPartial",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "need": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewPrimaryNeedsFromAws": {
        "title": "AlhsAlaceNewPrimaryNeedsFromAws",
        "type": "object",
        "properties": {
          "need": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceOpportunityTeams": {
        "title": "AlhsAlaceOpportunityTeams",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceOpportunityTeamsPartial": {
        "title": "AlhsAlaceOpportunityTeamsPartial",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewOpportunityTeams": {
        "title": "AlhsAlaceNewOpportunityTeams",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceOpportunities": {
        "title": "AlhsAlaceOpportunities",
        "type": "object",
        "properties": {
          "awsOppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "awsStage": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "closed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1
          },
          "closedLostReason": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "createdDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "dealName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "doesOppBelongToNatSec": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "lastSyncedToAws": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "nextSteps": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "nextStepsHistory": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "opportunityType": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "origination": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "parentOppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "partnerCrmUniqueId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "partnerProjectTitle": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "reviewStatus": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "syncStatusAws": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "syncToAws": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1
          },
          "syncedToSharedDb": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "targetCloseDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          },
          "projectId": {
            "x-primary-key": false,
            "type": "number"
          },
          "awsProductIds": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "number"
              }
            }
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceOpportunitiesPartial": {
        "title": "AlhsAlaceOpportunitiesPartial",
        "type": "object",
        "properties": {
          "awsOppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "awsStage": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "closed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1
          },
          "closedLostReason": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "createdDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "dealName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "doesOppBelongToNatSec": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "lastSyncedToAws": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "nextSteps": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "nextStepsHistory": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "opportunityType": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "origination": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "parentOppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "partnerCrmUniqueId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "partnerProjectTitle": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "reviewStatus": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "syncStatusAws": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "syncToAws": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1
          },
          "syncedToSharedDb": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "targetCloseDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          },
          "projectId": {
            "x-primary-key": false,
            "type": "number"
          },
          "awsProductIds": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "number"
              }
            }
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewOpportunities": {
        "title": "AlhsAlaceNewOpportunities",
        "type": "object",
        "properties": {
          "awsOppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "awsStage": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "closed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1
          },
          "closedLostReason": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "createdDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "dealName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "doesOppBelongToNatSec": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "lastSyncedToAws": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "nextSteps": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "nextStepsHistory": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "string"
              }
            }
          },
          "opportunityType": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "origination": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "parentOppId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "partnerCrmUniqueId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "partnerProjectTitle": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 255
          },
          "reviewStatus": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "syncStatusAws": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 20
          },
          "syncToAws": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 1
          },
          "syncedToSharedDb": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "targetCloseDate": {
            "x-primary-key": false,
            "type": "string",
            "format": "date-time"
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          },
          "projectId": {
            "x-primary-key": false,
            "type": "number"
          },
          "awsProductIds": {
            "x-primary-key": false,
            "type": "array",
            "items": {
              "x-primary-key": false,
              "type": "array",
              "items": {
                "x-primary-key": false,
                "type": "number"
              }
            }
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewPrimaryNeedsFromAwsInOpportunities": {
        "title": "AlhsAlaceNewPrimaryNeedsFromAwsInOpportunities",
        "type": "object",
        "properties": {
          "need": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewOpportunityTeamsInOpportunities": {
        "title": "AlhsAlaceNewOpportunityTeamsInOpportunities",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewMarketingActivitiesInOpportunities": {
        "title": "AlhsAlaceNewMarketingActivitiesInOpportunities",
        "type": "object",
        "properties": {
          "isFromMarketingActivity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingCampaign": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "wasMarketingFundsUsed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceMarketingActivitiesPartial": {
        "title": "AlhsAlaceMarketingActivitiesPartial",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "isFromMarketingActivity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingCampaign": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "wasMarketingFundsUsed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceMarketingUseCases": {
        "title": "AlhsAlaceMarketingUseCases",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceMarketingUseCasesPartial": {
        "title": "AlhsAlaceMarketingUseCasesPartial",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewMarketingUseCases": {
        "title": "AlhsAlaceNewMarketingUseCases",
        "type": "object",
        "properties": {
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceMarketingChannels": {
        "title": "AlhsAlaceMarketingChannels",
        "type": "object",
        "properties": {
          "channel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceMarketingChannelsPartial": {
        "title": "AlhsAlaceMarketingChannelsPartial",
        "type": "object",
        "properties": {
          "channel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewMarketingChannels": {
        "title": "AlhsAlaceNewMarketingChannels",
        "type": "object",
        "properties": {
          "channel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceMarketingActivities": {
        "title": "AlhsAlaceMarketingActivities",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "isFromMarketingActivity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingCampaign": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "wasMarketingFundsUsed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewMarketingActivities": {
        "title": "AlhsAlaceNewMarketingActivities",
        "type": "object",
        "properties": {
          "isFromMarketingActivity": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingCampaign": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "wasMarketingFundsUsed": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "opportunityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewMarketingUseCasesInMarketingActivities": {
        "title": "AlhsAlaceNewMarketingUseCasesInMarketingActivities",
        "type": "object",
        "properties": {
          "useCase": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewMarketingChannelsInMarketingActivities": {
        "title": "AlhsAlaceNewMarketingChannelsInMarketingActivities",
        "type": "object",
        "properties": {
          "channel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "marketingActivityId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceDeliveryModels": {
        "title": "AlhsAlaceDeliveryModels",
        "type": "object",
        "properties": {
          "deliveryModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewDeliveryModels": {
        "title": "AlhsAlaceNewDeliveryModels",
        "type": "object",
        "properties": {
          "deliveryModel": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "projectDetailId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceCustomers": {
        "title": "AlhsAlaceCustomers",
        "type": "object",
        "properties": {
          "awsAccountId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "companyName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "customerDuns": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 9
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "industryOther": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "industryVertical": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "website": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "required": [
          "companyName"
        ],
        "additionalProperties": false
      },
      "AlhsAlaceCustomersPartial": {
        "title": "AlhsAlaceCustomersPartial",
        "type": "object",
        "properties": {
          "awsAccountId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "companyName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "customerDuns": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 9
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "industryOther": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "industryVertical": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "website": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewCustomers": {
        "title": "AlhsAlaceNewCustomers",
        "type": "object",
        "properties": {
          "awsAccountId": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "companyName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "customerDuns": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 9
          },
          "industryOther": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "industryVertical": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "website": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          },
          "addressId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "required": [
          "companyName"
        ],
        "additionalProperties": false
      },
      "AlhsAlaceNewContactsInCustomers": {
        "title": "AlhsAlaceNewContactsInCustomers",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceContactsPartial": {
        "title": "AlhsAlaceContactsPartial",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceContacts": {
        "title": "AlhsAlaceContacts",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewContacts": {
        "title": "AlhsAlaceNewContacts",
        "type": "object",
        "properties": {
          "email": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "firstName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "lastName": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "phone": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 15
          },
          "title": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "customerId": {
            "x-primary-key": false,
            "type": "number"
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceAwsProduct": {
        "title": "AlhsAlaceAwsProduct",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "product": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceAwsProductPartial": {
        "title": "AlhsAlaceAwsProductPartial",
        "type": "object",
        "properties": {
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "product": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewAwsProduct": {
        "title": "AlhsAlaceNewAwsProduct",
        "type": "object",
        "properties": {
          "product": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceAddresses": {
        "title": "AlhsAlaceAddresses",
        "type": "object",
        "properties": {
          "city": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "country": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "postalCode": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "state": {
            "x-primary-key": false,
            "type": "string"
          },
          "streetAddress": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceAddressesPartial": {
        "title": "AlhsAlaceAddressesPartial",
        "type": "object",
        "properties": {
          "city": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "country": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "id": {
            "x-primary-key": true,
            "type": "number",
            "x-generated": true
          },
          "postalCode": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "state": {
            "x-primary-key": false,
            "type": "string"
          },
          "streetAddress": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "AlhsAlaceNewAddresses": {
        "title": "AlhsAlaceNewAddresses",
        "type": "object",
        "properties": {
          "city": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "country": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 50
          },
          "postalCode": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 10
          },
          "state": {
            "x-primary-key": false,
            "type": "string"
          },
          "streetAddress": {
            "x-primary-key": false,
            "type": "string",
            "x-length": 100
          }
        },
        "additionalProperties": false
      },
      "PingResponse": {
        "type": "object",
        "title": "PingResponse",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      },
      "Ping3Response": {
        "type": "object",
        "title": "Ping3Response",
        "properties": {
          "greeting": {
            "type": "string"
          },
          "date": {
            "type": "string"
          },
          "url": {
            "type": "string"
          },
          "headers": {
            "type": "object",
            "properties": {
              "Content-Type": {
                "type": "string"
              }
            },
            "additionalProperties": true
          }
        }
      }
    },
    "securitySchemes": {
      "jwt": {
        "type": "http",
        "scheme": "bearer",
        "bearerFormat": "JWT"
      }
    }
  },
  "x-fuzzy-search-endpoints": []
}