# Data Samples

On this Data Samples page, you will find structured JSON representations of various incident data points, demonstrating the format and content delivered by our API.

These samples are designed to provide you with a clear understanding of the data you can expect to receive, including details such as incident type, location, and severity. By reviewing these JSON samples, you can better integrate and utilize incident information in your applications, ensuring seamless interaction with our API.

```json
[
    {
        "id": "ICD-11111111",
        "incidentType": "CRASH",
        "incidentSubType": "PRIMARY_CRASH",
        "description": {
            "shortDescription": "March 04, 2022 12:20 PM UTC. Incident on XXX. Affected lanes reported.",
            "description": "Crash was detected at March 04, 2022 12:20 PM UTC on XXX. One lane is closed. Minor severity."
        },
        "location": {
            "long": -97.684298,
            "lat": 30.505254
        },
        "state": "Texas",
        "county": "Williamson County",
        "city": "Round Rock",
        "roadType": "FREEWAY",
        "corridor": "I-35",
        "direction": "NB",
        "orientation": "AT",
        "crossroad": "Interstate 35",
        "mileMarker": "22.0",
        "startTime": "2022-03-04T12:20:57Z",
        "confirmedTime": "2022-03-04T12:29:28.732Z",
        "updateTime": "2022-03-04T12:42:27.435Z",
        "endTime": null,
        "affectedLanes": [
            {
                "laneNumber": null,
                "laneType": "RIGHT_SHOULDER",
                "isClosed": false,
                "updatedTime": "2022-03-04T12:29:27.599Z"
            },
            {
                "laneNumber": 3,
                "laneType": "CENTRAL_LANE",
                "isClosed": false,
                "updatedTime": "2022-03-04T12:29:27.598Z"
            },
            {
                "laneNumber": 2,
                "laneType": "CENTRAL_LANE",
                "isClosed": true,
                "updatedTime": "2022-03-04T12:29:27.597Z"
            },
            {
                "laneNumber": 1,
                "laneType": "CENTRAL_LANE",
                "isClosed": false,
                "updatedTime": "2022-03-04T12:29:27.596Z"
            },
            {
                "laneNumber": null,
                "laneType": "LEFT_SHOULDER",
                "isClosed": false,
                "updatedTime": "2022-03-04T12:29:27.594Z"
            }
        ],
        "isFullClosure": false,
        "severity": "MINOR_SEVERITY",
        "estimatedEndTime": null,
        "estimatedDurationMin": 93,
        "impact": {
            "updatedAt": "2022-03-04T12:29:27.597Z",
            "level": "NEGLIGIBLE_IMPACT",
            "delayInSeconds": 120,
            "impactedLengthInMiles": 1.638,
            "corridors": [
                {
                    "name": "US-290",
                    "corridorSpeedDiffPercent": 40,
                    "impactedSegments": [
                        {
                            "segmentName": "US-290",
                            "segmentLevel": "MEDIUM_IMPACT",
                            "segmentSpeedDiffPercent": 40,
                            "lengthInMiles": 0.496,
                            "linestring": {
                                "coordinates": [
                                    [
                                        -97.7938309,
                                        30.2325456
                                    ],
                                    [
                                        -97.7877751,
                                        30.2296095
                                    ],
                                    [
                                        -97.7865785,
                                        30.2290319
                                    ]
                                ],
                                "type": "LineString"
                            }
                        }
                    ]
                }]},
        "confidence": {
            "score": "VERIFIED" 
        },
        "atmsId": "XYZ_2022-03-25_00084",
        "createdBy": "166",
        "reportedBy": "",
        "confirmedBy": 123,
        "updatedBy": "202",
        "clearedBy": null,
        "clearedReason": "",
        "injuries": 1,
        "fatalities": null,
        "involvedVehicles": [],
        "notes": [
            {
                "note": "Crash Affecting Multiple Lanes, Lane 2 is Closed.",
                "updateTime": "",
                "updatedBy": "test"
            }
        ],
        "unitResponse": [],
        "involvedVehiclesCount": 0
    }
]
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.rekor.ai/command-intelligence-services/incident-detection-api/data-samples.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
