> ## Documentation Index
> Fetch the complete documentation index at: https://resq-dependabot-github-actions-github-actions-478e18be3d.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Process predictive alert (PDIE-authenticated)



## OpenAPI

````yaml /specs/coordination.json post /v1/pre-alert
openapi: 3.0.3
info:
  title: ResQ Coordination HCE Documentation
  description: Development documentation
  version: 2.0.0
servers: []
security: []
tags:
  - name: Storage
    description: Storage and IPFS endpoints
  - name: Intelligence
    description: Disaster intelligence and reporting
  - name: Simulation
    description: Fault injection and simulation
  - name: Fleet
    description: Fleet management and telemetry
  - name: Admin
    description: Admin endpoints
  - name: Observability
    description: Observability endpoints
paths:
  /v1/pre-alert:
    post:
      tags:
        - Intelligence
      summary: Process predictive alert (PDIE-authenticated)
      operationId: postV1PreAlert
      parameters: []
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              required:
                - predicted_location
              properties:
                alert_id:
                  type: string
                type:
                  type: string
                timestamp:
                  type: string
                severity:
                  type: string
                status:
                  type: string
                message:
                  type: string
                prediction:
                  type: object
                  required:
                    - id
                    - type
                    - risk_score
                    - confidence
                    - horizon_hours
                    - model_version
                  properties:
                    id:
                      type: string
                    type:
                      type: string
                    risk_score:
                      type: number
                    confidence:
                      type: number
                    rationale:
                      type: string
                    horizon_hours:
                      type: number
                    model_version:
                      type: string
                vulnerabilities:
                  type: array
                  items:
                    type: object
                    required:
                      - sector_id
                      - vulnerability_type
                      - population_at_risk
                      - infrastructure
                      - priority
                      - is_critical
                    properties:
                      sector_id:
                        type: string
                      vulnerability_type:
                        type: string
                      population_at_risk:
                        type: number
                      infrastructure:
                        type: string
                      priority:
                        type: number
                      is_critical:
                        type: boolean
                summary:
                  type: object
                  required:
                    - total_population_at_risk
                    - critical_infrastructure_count
                    - affected_sectors
                  properties:
                    total_population_at_risk:
                      type: number
                    critical_infrastructure_count:
                      type: number
                    affected_sectors:
                      type: number
                predicted_location:
                  type: object
                  required:
                    - latitude
                    - longitude
                    - altitude
                  properties:
                    latitude:
                      type: number
                    longitude:
                      type: number
                    altitude:
                      type: number
                impacted_radius_meters:
                  type: number
                estimated_time_hours:
                  type: number
                source:
                  type: string
      responses:
        '200':
          description: Pre-alert processed

````