clause “notices=agreement”

https://www.lawinsider.com/search?clause:Notices=agreement

curl -X POST "https://www.lawinsider.com/api/v1alpha/search?token=xxx&pretty" -H 'Content-Type: application/json' -d'{
    "query": {
        "bool": {
            "must": [
                {
                    "bool": {
                        "should": [
                            {
                                "match_all": {}
                            },
                            {
                                "rank_feature": {
                                    "boost": 50,
                                    "field": "weight_rank",
                                    "saturation": {
                                        "pivot": 16
                                    }
                                }
                            }
                        ]
                    }
                },
                {
                    "bool": {
                        "filter": [
                            {
                                "nested": {
                                    "ignore_unmapped": true,
                                    "path": "sections",
                                    "query": {
                                        "bool": {
                                            "must": [
                                                {
                                                    "terms": {
                                                        "sections.type": [
                                                            "clause"
                                                        ]
                                                    }
                                                },
                                                {
                                                    "term": {
                                                        "sections.name.raw": "Notices"
                                                    }
                                                }
                                            ]
                                        }
                                    }
                                }
                            }
                        ]
                    }
                },
                {
                    "nested": {
                        "ignore_unmapped": true,
                        "inner_hits": {
                            "name": "clause:Notices"
                        },
                        "path": "sections",
                        "query": {
                            "bool": {
                                "filter": [
                                    {
                                        "terms": {
                                            "sections.type": [
                                                "clause"
                                            ]
                                        }
                                    },
                                    {
                                        "term": {
                                            "sections.name.raw": "Notices"
                                        }
                                    }
                                ],
                                "must": [
                                    {
                                        "simple_query_string": {
                                            "default_operator": "and",
                                            "fields": [
                                                "sections.snippet"
                                            ],
                                            "flags": "AND|OR|NOT|PHRASE|PRECEDENCE|ESCAPE|WHITESPACE|SLOP|FUZZY|PREFIX",
                                            "lenient": true,
                                            "query": "agreement"
                                        }
                                    }
                                ]
                            }
                        },
                        "score_mode": "avg"
                    }
                }
            ]
        }
    },
    "size": 1,
    "profile": false,
    "explain": false,
    "timeout": "15000ms",
    "_source": [
        "name",
        "snippet",
        "category.name",
        "category.value",
        "company.name",
        "company.value",
        "jurisdiction.name",
        "jurisdiction.value",
        "industry.name",
        "industry.value",
        "filing_date",
        "group_id",
        "group_size"
    ],
    "highlight": {
        "fields": {
            "body": {},
            "company.name": {},
            "jurisdiction.name": {}
        },
        "order": "score",
        "post_tags": [
            "</b>"
        ],
        "pre_tags": [
            "<b>"
        ]
    }
}'

Responds:

{
  "took" : 271,
  "timed_out" : false,
  "_shards" : {
    "total" : 42,
    "successful" : 42,
    "skipped" : 0,
    "failed" : 0
  },
  "hits" : {
    "total" : {
      "value" : 10000,
      "relation" : "gte"
    },
    "max_score" : 3.0034525,
    "hits" : [
      {
        "_index" : "contract",
        "_type" : "_doc",
        "_id" : "en/8uOT6C3fw2T",
        "_score" : 3.0034525,
        "_source" : {
          "snippet" : "ALLEGO B.V., a private company with limited liability (besloten vennootschap met beperkte aansprakelijkheid) under the laws of the Netherlands, having its official seat (statutaire zetel) in Arnhem, the Netherlands, and its office at Westervoortsedijk 73 LB1, 6827 AV Arnhem, the Netherlands, registered with the Dutch Trade Register under number 54100038, acting as an original debtor; and",
          "group_size" : 1,
          "group_id" : "8uOT6C3fw2T",
          "filing_date" : "2021-09-30",
          "name" : "PARALLEL DEBT AGREEMENT dated 27 May 2019 ALLEGO B.V. ALLEGO INNOVATIONS B.V. ALLEGO HOLDING B.V. as Debtors SOCIETE GENERALE as Agent SOCIETE GENERALE as Security Agent ALLEGO CHARGING LTD as service of process agent for the Debtors Linklaters Ref: L-277024 Linklaters LLP",
          "company" : {
            "name" : "Athena Pubco B.V.",
            "value" : "1874474"
          },
          "category" : {
            "name" : "Parallel Debt Agreement",
            "value" : "parallel-debt-agreement"
          }
        },
        "inner_hits" : {
          "clause:Notices" : {
            "hits" : {
              "total" : {
                "value" : 1,
                "relation" : "eq"
              },
              "max_score" : 2.0034525,
              "hits" : [
                {
                  "_index" : "contract",
                  "_type" : "_doc",
                  "_id" : "en/8uOT6C3fw2T",
                  "_nested" : {
                    "field" : "sections",
                    "offset" : 18
                  },
                  "_score" : 2.0034525,
                  "_source" : {
                    "snippet" : "The provisions of Clause 18 (Notices) of the Intercreditor Agreement shall be incorporated into this Agreement as if set out in full in this Agreement and as if references in those clauses to “this Agreement” are references to this Agreement.",
                    "name" : "Notices",
                    "type" : "clause",
                    "value" : "notices"
                  }
                }
              ]
            }
          }
        }
      }
    ]
  }
}