forked from koala73/worldmonitor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathUnrestService.openapi.json
More file actions
1 lines (1 loc) · 9.6 KB
/
UnrestService.openapi.json
File metadata and controls
1 lines (1 loc) · 9.6 KB
1
{"components":{"schemas":{"Error":{"description":"Error is returned when a handler encounters an error. It contains a simple error message that the developer can customize.","properties":{"message":{"description":"Error message (e.g., 'user not found', 'database connection failed')","type":"string"}},"type":"object"},"FieldViolation":{"description":"FieldViolation describes a single validation error for a specific field.","properties":{"description":{"description":"Human-readable description of the validation violation (e.g., 'must be a valid email address', 'required field missing')","type":"string"},"field":{"description":"The field path that failed validation (e.g., 'user.email' for nested fields). For header validation, this will be the header name (e.g., 'X-API-Key')","type":"string"}},"required":["field","description"],"type":"object"},"GeoCoordinates":{"description":"GeoCoordinates represents a geographic location using WGS84 coordinates.","properties":{"latitude":{"description":"Latitude in decimal degrees (-90 to 90).","format":"double","maximum":90,"minimum":-90,"type":"number"},"longitude":{"description":"Longitude in decimal degrees (-180 to 180).","format":"double","maximum":180,"minimum":-180,"type":"number"}},"type":"object"},"ListUnrestEventsRequest":{"description":"ListUnrestEventsRequest specifies filters for retrieving social unrest events.","properties":{"country":{"description":"Optional country filter (ISO 3166-1 alpha-2).","type":"string"},"cursor":{"description":"Cursor for next page.","type":"string"},"end":{"description":"End of time range (inclusive), Unix epoch milliseconds.. Warning: Values \u003e 2^53 may lose precision in JavaScript","format":"int64","type":"integer"},"minSeverity":{"description":"SeverityLevel represents a three-tier severity classification used across domains.\n Maps to existing TS unions: 'low' | 'medium' | 'high'.","enum":["SEVERITY_LEVEL_UNSPECIFIED","SEVERITY_LEVEL_LOW","SEVERITY_LEVEL_MEDIUM","SEVERITY_LEVEL_HIGH"],"type":"string"},"neLat":{"description":"North-east corner latitude of bounding box.","format":"double","type":"number"},"neLon":{"description":"North-east corner longitude of bounding box.","format":"double","type":"number"},"pageSize":{"description":"Maximum items per page (1-100).","format":"int32","type":"integer"},"start":{"description":"Start of time range (inclusive), Unix epoch milliseconds.. Warning: Values \u003e 2^53 may lose precision in JavaScript","format":"int64","type":"integer"},"swLat":{"description":"South-west corner latitude of bounding box.","format":"double","type":"number"},"swLon":{"description":"South-west corner longitude of bounding box.","format":"double","type":"number"}},"type":"object"},"ListUnrestEventsResponse":{"description":"ListUnrestEventsResponse contains unrest events and clusters matching the request.","properties":{"clusters":{"items":{"$ref":"#/components/schemas/UnrestCluster"},"type":"array"},"events":{"items":{"$ref":"#/components/schemas/UnrestEvent"},"type":"array"},"pagination":{"$ref":"#/components/schemas/PaginationResponse"}},"type":"object"},"PaginationResponse":{"description":"PaginationResponse contains pagination metadata returned alongside list results.","properties":{"nextCursor":{"description":"Cursor for fetching the next page. Empty string indicates no more pages.","type":"string"},"totalCount":{"description":"Total count of items matching the query, if known. Zero if the total is unknown.","format":"int32","type":"integer"}},"type":"object"},"UnrestCluster":{"description":"UnrestCluster represents a geographic cluster of related unrest events.","properties":{"country":{"description":"Country of the cluster.","type":"string"},"endAt":{"description":"End of the cluster time window, as Unix epoch milliseconds.. Warning: Values \u003e 2^53 may lose precision in JavaScript","format":"int64","type":"integer"},"eventCount":{"description":"Number of events in this cluster.","format":"int32","type":"integer"},"events":{"items":{"$ref":"#/components/schemas/UnrestEvent"},"type":"array"},"id":{"description":"Unique cluster identifier.","type":"string"},"primaryCause":{"description":"Primary cause or theme of the unrest.","type":"string"},"region":{"description":"Region within the country.","type":"string"},"severity":{"description":"SeverityLevel represents a three-tier severity classification used across domains.\n Maps to existing TS unions: 'low' | 'medium' | 'high'.","enum":["SEVERITY_LEVEL_UNSPECIFIED","SEVERITY_LEVEL_LOW","SEVERITY_LEVEL_MEDIUM","SEVERITY_LEVEL_HIGH"],"type":"string"},"startAt":{"description":"Start of the cluster time window, as Unix epoch milliseconds.. Warning: Values \u003e 2^53 may lose precision in JavaScript","format":"int64","type":"integer"}},"type":"object"},"UnrestEvent":{"description":"UnrestEvent represents a social unrest incident (protest, riot, strike, etc.).\n Aggregated from ACLED and GDELT sources.","properties":{"actors":{"items":{"description":"Named actors involved.","type":"string"},"type":"array"},"city":{"description":"City where the event occurred.","type":"string"},"confidence":{"description":"ConfidenceLevel represents the confidence in event data accuracy.\n Used across multiple domains.","enum":["CONFIDENCE_LEVEL_UNSPECIFIED","CONFIDENCE_LEVEL_LOW","CONFIDENCE_LEVEL_MEDIUM","CONFIDENCE_LEVEL_HIGH"],"type":"string"},"country":{"description":"Country where the event occurred.","type":"string"},"eventType":{"description":"UnrestEventType represents the classification of a social unrest event.\n Maps to existing TS union: 'protest' | 'riot' | 'strike' | 'demonstration' | 'civil_unrest'.","enum":["UNREST_EVENT_TYPE_UNSPECIFIED","UNREST_EVENT_TYPE_PROTEST","UNREST_EVENT_TYPE_RIOT","UNREST_EVENT_TYPE_STRIKE","UNREST_EVENT_TYPE_DEMONSTRATION","UNREST_EVENT_TYPE_CIVIL_UNREST"],"type":"string"},"fatalities":{"description":"Reported fatalities, if any.","format":"int32","type":"integer"},"id":{"description":"Unique event identifier.","minLength":1,"type":"string"},"location":{"$ref":"#/components/schemas/GeoCoordinates"},"occurredAt":{"description":"Time the event occurred, as Unix epoch milliseconds.. Warning: Values \u003e 2^53 may lose precision in JavaScript","format":"int64","type":"integer"},"region":{"description":"Administrative region within the country.","type":"string"},"severity":{"description":"SeverityLevel represents a three-tier severity classification used across domains.\n Maps to existing TS unions: 'low' | 'medium' | 'high'.","enum":["SEVERITY_LEVEL_UNSPECIFIED","SEVERITY_LEVEL_LOW","SEVERITY_LEVEL_MEDIUM","SEVERITY_LEVEL_HIGH"],"type":"string"},"sourceType":{"description":"UnrestSourceType represents the data source for an unrest event.\n Maps to existing TS union: 'acled' | 'gdelt' | 'rss'.","enum":["UNREST_SOURCE_TYPE_UNSPECIFIED","UNREST_SOURCE_TYPE_ACLED","UNREST_SOURCE_TYPE_GDELT","UNREST_SOURCE_TYPE_RSS"],"type":"string"},"sources":{"items":{"description":"Source identifiers.","type":"string"},"type":"array"},"summary":{"description":"Brief summary of the event.","type":"string"},"tags":{"items":{"description":"Descriptive tags.","type":"string"},"type":"array"},"title":{"description":"Event title or headline.","type":"string"}},"required":["id"],"type":"object"},"ValidationError":{"description":"ValidationError is returned when request validation fails. It contains a list of field violations describing what went wrong.","properties":{"violations":{"description":"List of validation violations","items":{"$ref":"#/components/schemas/FieldViolation"},"type":"array"}},"required":["violations"],"type":"object"}}},"info":{"title":"UnrestService API","version":"1.0.0"},"openapi":"3.1.0","paths":{"/api/unrest/v1/list-unrest-events":{"get":{"description":"ListUnrestEvents retrieves protest, riot, and civil unrest events.","operationId":"ListUnrestEvents","parameters":[{"description":"Start of time range (inclusive), Unix epoch milliseconds.","in":"query","name":"start","required":false,"schema":{"format":"int64","type":"string"}},{"description":"End of time range (inclusive), Unix epoch milliseconds.","in":"query","name":"end","required":false,"schema":{"format":"int64","type":"string"}},{"description":"Maximum items per page (1-100).","in":"query","name":"page_size","required":false,"schema":{"format":"int32","type":"integer"}},{"description":"Cursor for next page.","in":"query","name":"cursor","required":false,"schema":{"type":"string"}},{"description":"Optional country filter (ISO 3166-1 alpha-2).","in":"query","name":"country","required":false,"schema":{"type":"string"}},{"description":"Optional minimum severity filter.","in":"query","name":"min_severity","required":false,"schema":{"type":"string"}},{"description":"North-east corner latitude of bounding box.","in":"query","name":"ne_lat","required":false,"schema":{"format":"double","type":"number"}},{"description":"North-east corner longitude of bounding box.","in":"query","name":"ne_lon","required":false,"schema":{"format":"double","type":"number"}},{"description":"South-west corner latitude of bounding box.","in":"query","name":"sw_lat","required":false,"schema":{"format":"double","type":"number"}},{"description":"South-west corner longitude of bounding box.","in":"query","name":"sw_lon","required":false,"schema":{"format":"double","type":"number"}}],"responses":{"200":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ListUnrestEventsResponse"}}},"description":"Successful response"},"400":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/ValidationError"}}},"description":"Validation error"},"default":{"content":{"application/json":{"schema":{"$ref":"#/components/schemas/Error"}}},"description":"Error response"}},"summary":"ListUnrestEvents","tags":["UnrestService"]}}}}