Skip to content

Commit

Permalink
fix(typo): fix unmapped in BaseEvent model (#32)
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrooot authored Apr 10, 2024
1 parent 182e16c commit 5a53fda
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py_ocsf_models/events/base_event.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ class BaseEvent(BaseModel):
- Status Code (status_code) [Optional]: The event status code, as reported by the event source. For example, in a Windows Failed Authentication event, this would be the value of 'Failure Code', e.g. 0x18.
- Status Details (status_detail) [Optional]: The status details contains additional information about the event/finding outcome.
- Status ID (status_id) [Optional]: The normalized status identifier of the Finding, set by the consumer.
- Unmapped Data (unmapped_data) [Optional]: The attributes that are not mapped to the event schema. The names and values of those attributes are specific to the event source.
- Unmapped Data (unmapped) [Optional]: The attributes that are not mapped to the event schema. The names and values of those attributes are specific to the event source.
"""

enrichments: Optional[list[Enrichment]]
Expand All @@ -84,4 +84,4 @@ class BaseEvent(BaseModel):
status_code: Optional[str]
status_detail: Optional[str]
status_id: Optional[StatusID]
unmapped_data: object
unmapped: Optional[object]

0 comments on commit 5a53fda

Please sign in to comment.