> ## Documentation Index
> Fetch the complete documentation index at: https://vicewire.ai/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Example: Legal Event

### Summary

This page runs through an example article and the output our system produced. We introduce the event, then we explain some key nuances in the output.

### Event Overview

A January 16, 2026 report states that Apple agreed to pay a \$150,000 civil penalty in New Jersey and change its in-store practices after regulators found repeated merchandise pricing violations at 11 stores. From a legal and regulatory perspective, the event is best understood as a state-level consumer protection and retail compliance matter: Apple was accused of failing to clearly display prices and refund information in a way required under New Jersey law, despite a prior 2017 consent order addressing the same issue. The main implication for Apple is not the size of the fine itself, but the signal of repeat non-compliance, added regulatory scrutiny, and the need for operational remediation such as clearer posted pricing, employee training, and compliance audits.

<ResponseExample>
  ```json Example Payload: Apple Legal Event theme={null}
  {
    "entity": {
      "security_name": "Apple",
      "ticker": "AAPL",
      "mic": "IEXG",
      "cik": "320193",
      "composite_figi": "BBG000B9XRY4"
    },
    "media_item": {
  	"title": "Apple Fined $150K by New Jersey for Obscure Store Pricing",
  	"title_md5": "1cabd7864165f030931f4b7587184a73",
      "url_hash": "d2687a0a2558e8f3e19417eb88afc372",
      "domain_id": "1095",
      "domain_tier": "3",
      "domain_category": "industry_specialist",
      "date_published": "2026-01-16T22:42:00Z",
      "available_at": "2026-01-16T22:47:50Z",
      "revision_id": "1",
      "revision_history": {},
      "word_count": 1731,
      "sentence_count": 94,
      "block_counts": 26,
      "entity_count": 46,
      "mentioned_in_title": true,
      "focus_of_article": true,
      "first_sid_mentioned": 1
    },
    "events": [
      {
        "event_family": "legal_regulatory",
        "event_sub_types": [
          {
            "sub_type": "consumer_commercial_practices"
          }
        ],
        "event_stage_statuses": [
          {
            "stage_status": "negotiated_resolution"
          }
        ],
        "timing": "recent",
        "editorial_form": "current_events",
        "event_family_metadata": {
          "procedural_posture": [
            "defendant_respondent"
          ],
          "primary_impact_channel": [
            "monetary_liability",
            "compliance_cost"
          ],
          "procedure_event_type": "settlement_or_commitments_entered",
          "counterparty_type": [
            "regulator"
          ],
          "remedy_form": [
            "fine_penalty",
            "compliance_order"
          ],
          "money_terms": [
            {
              "kind": "fine_penalty",
              "amount": 150000,
              "currency": "USD"
            }
          ],
          "compliance_deadline": null,
          "post_terminal_activity_type": "compliance_monitoring",
          "authority_type": "consumer_protection_regulator",
          "jurisdiction": {
            "country": "United States",
            "country_code": "US",
            "region": null,
            "state_or_province": "New Jersey",
            "state_or_province_code": "NJ",
            "city": null,
            "supranational": null
          }
        },
        "affected_business_surface": [
          {
            "surface_relevance": "primary",
            "category": "retail_and_direct_sales",
            "counts": {
              "count_value": 11,
              "value_type": "count",
              "count_entity_type": "store_or_retail",
              "operator": "exact"
            }
          },
          {
            "surface_relevance": "secondary",
            "category": "pricing_billing_and_subscription_practices",
            "counts": null
          }
        ],
        "finbert": {
          "tone": {
            "negative": 0.78,
            "neutral": 0.19,
            "positive": 0.03,
            "label": "negative"
          },
          "tone_distribution": {
            "negative_sentence_share": 0.44,
            "neutral_sentence_share": 0.22,
            "positive_sentence_share": 0.33,
            "sentence_count": 9
          },
          "tone_extremes": {
            "top_negative_sentence_prob": 0.94,
            "top_neutral_sentence_prob": 0.72,
            "top_positive_sentence_prob": 0.82
          }
        }
      }
    ]
  }
  ```
</ResponseExample>

### Key nuances in the output

* `legal_regulatory`: This is not just a generic negative news item. The article is describing a state-level consumer protection and retail compliance matter, which is why the payload assigns `sub_type = consumer_commercial_practices`. The issue is about store pricing and refund-display practices, not product liability, antitrust, or privacy.
* `event_stage_statuses = negotiated_resolution`: The article says Apple agreed to pay a civil penalty and change its practices. That is why this is captured as a negotiated resolution rather than an early inquiry, active litigation, or a fully adjudicated court outcome.
* `procedure_event_type = settlement_or_commitments_entered`: The important signal is not just that Apple paid `USD 150000`. The payload also preserves that the resolution included operational commitments, which is why `remedy_form` includes both `fine_penalty` and `compliance_order`.
* `primary_impact_channel = ["monetary_liability", "compliance_cost"]`: The fine itself is small relative to Apple, but the article’s more meaningful implication is the need for remediation, monitoring, training, and changes to in-store compliance processes. That is why the output does not reduce the event to a dollar amount alone.
* `jurisdiction` and `authority_type`: The event is correctly scoped to New Jersey and a consumer-protection regulator. That matters because this is a state retail-compliance issue, not a broad federal action or a multi-jurisdiction enforcement wave.
* `affected_business_surface`: The payload ties the event primarily to `retail_and_direct_sales`, with `count_value = 11`, because the article says the violations occurred across 11 stores. It also assigns `pricing_billing_and_subscription_practices`, which preserves that the underlying issue was pricing-display compliance rather than store footprint alone.
* `post_terminal_activity_type = compliance_monitoring`: This matters because the article is not only about a closed penalty. It also implies ongoing follow-through and scrutiny after the settlement, which is especially relevant given the repeat-compliance framing in the story.
* `finbert`: The aggregate tone is now clearly negative, with `tone.label = "negative"` and `negative = 0.78`. That fits the article’s enforcement framing. At the same time, `tone_distribution` remains mixed: `negative_sentence_share = 0.44`, `neutral_sentence_share = 0.22`, and `positive_sentence_share = 0.33`. That means the event-linked evidence still contains remediation and settlement language, even though the overall read is adverse. `top_negative_sentence_prob = 0.94` reinforces that at least one sentence is very strongly negative.

Bottom line: a simpler system might flatten this into “Apple fined \$150K.” ViceWire preserves the more important structure: a negotiated legal resolution, a consumer-practices compliance issue, direct retail exposure across 11 stores, and an ongoing remediation and monitoring burden beyond the fine itself.
