{ "produces": [ "application/json; version=DEV", "application/json; version=QA", "application/json; version=STG", "application/json; version=2", "application/json" ], "schemes": [ "https" ], "swagger": "2.0", "info": { "title": "Alerts", "description": "Access International SOS alerts. Keys will generally provide access to\nmultiple API versions; keys will provide access to a single audience\n(client, partner, or thirdparty).\n\nExample accessing V2 of the API with curl:\n
\n  curl -s -H \"Accept:application/json; version=STG\" \\\n          -H Authorization:AUTHORIZATION_KEY \\\n          https://api.internationalsos.com/alert/alerts\n  
\n\nExample of accessing V3 of the API with curl; note the required\nAccept-Language header:\n
\n  curl -s -H \"Accept:application/json; version=3\" \\\n          -H Authorization:AUTHORIZATION_KEY \\\n          -H Accept-Language:en-GB \\\n          https://api.internationalsos.com/client/full\n  
\n\nExample source code for accessing the API ([Go](https://golang.org)):\n\n
\n  package main\n  //\n  import (\n     \"fmt\"\n     \"io/ioutil\"\n     \"net/http\"\n     \"os\"\n  )\n  //\n  func main() {\n     req, _ := http.NewRequest(\"GET\", \"https://api.internationalsos.com/alert/alerts\", nil)\n     // International SOS authorization tokens are passed via HTTP header.  Note this is NOT\n     // a BASIC authentication header.\n     req.Header.Set(\"Authorization\", os.Getenv(\"KEY\"))\n     // This is a required header.  We recommend using the versioned form to prevent breakages in API changes.\n     req.Header.Set(\"Accept\", \"application/json; version=STG\")\n     client := http.Client{}\n     resp, _ := client.Do(req)\n     defer resp.Body.Close()\n     data, _ := ioutil.ReadAll(resp.Body)\n     fmt.Println(string(data))\n  }\n  
\n\nNote that you can download the raw Swagger YAML and import it into the\n[Swagger Editor](https://editor.swagger.io), which can generate language\nbinding libraries 44 different programming languages.\n", "termsOfService": "Please see your license for TOS details.", "version": "3.1.0" }, "host": "api.internationalsos.com", "basePath": "/alert", "paths": { "/summaries": { "get": { "tags": [ "Version 2" ], "summary": "Alert summaries", "description": "Returns summaries for all active Articles and Alerts. Parameters can\nfilter articles that have changed in either the past N hours, or since\na given date. If no parameters are provided, all active articles are\nreturned. Only active articles are returned in any case.\n", "parameters": [ { "name": "within", "in": "query", "description": "Retrieve only articles changed within this number of previous hours.", "type": "integer", "required": false }, { "name": "since", "in": "query", "description": "Retrieve only articles changed since this date. Overrides\n`within`. The value must conform to RFC3339.\n", "type": "string", "format": "date-time", "required": false } ], "responses": { "200": { "description": "success", "schema": { "$ref": "#/definitions/summary" } } } } }, "/alerts": { "get": { "tags": [ "Version 2" ], "summary": "Alerts and Articles", "description": "Returns all active Articles and Alerts. Parameters can filter articles\nthat have changed in either the past N hours, or since a given date.\nIf no parameters are provided, all active articles are returned. Only\nactive articles are returned in any case.\n", "parameters": [ { "name": "within", "in": "query", "description": "Retrieve only articles changed within this number of previous hours.", "type": "integer", "required": false }, { "name": "since", "in": "query", "description": "Retrieve only articles changed since this date. Overrides\n`within`. The value must conform to RFC3339.\n", "type": "string", "format": "date-time", "required": false } ], "responses": { "200": { "description": "success", "schema": { "$ref": "#/definitions/article" } } } } }, "/headlines": { "get": { "tags": [ "Version 2" ], "summary": "Executive Summary (Security)", "description": "Security alert headlines and executive summary information\n", "responses": { "200": { "description": "success", "schema": { "$ref": "#/definitions/headline" } } } } }, "/version": { "get": { "tags": [ "Version 2" ], "summary": "The currently deployed version of this service", "description": "This service allows querying the application directly to\nidentify which version is deployed. http://semver.org/ is followed,\nand only the major revision is identified in the content negotiation.\n", "produces": [ "text/plain; version=DEV", "text/plain; version=QA", "text/plain; version=STG", "text/plain; version=2", "text/plain" ], "responses": { "200": { "description": "success", "schema": { "type": "string" } } } } }, "/client/full": { "get": { "tags": [ "Version 3 (Clients)" ], "summary": "Alerts API endpoint for clients - full view", "description": "Sample request: \r\n\r\n GET /client/full\r\n\r\nParameter Examples:\r\n\r\n Optional:\r\n {\r\n \"Regions\": 9,10,11\r\n \"Severities\": 1,2\r\n \"Categories\": Terror attack,Explosion\r\n \"Countries\": AFG,GBR\r\n }", "operationId": "Alerts_Find_client_full", "consumes": [], "produces": [ "application/json; version=3", "text/json; version=3", "application/xml; version=3", "text/xml; version=3" ], "parameters": [ { "name": "alertId", "in": "query", "description": "ID of an item\r\n\r\nValid values: a Guid \r\n\r\nDefault value: return all", "required": false, "type": "string", "format": "uuid" }, { "name": "globalOnly", "in": "query", "description": "If true, then includes all items covering more than one region OR any alerts with a 'worldwide' impact\r\n\r\nValid Values: true, false\r\n \r\nDefault value: false", "required": false, "type": "boolean" }, { "name": "status", "in": "query", "description": "The publish status\r\n\r\nValid values: Live, Archived, All \r\n\r\nDefault value: Live", "required": false, "type": "string", "enum": [ "Live", "Archived", "All" ] }, { "name": "startActive", "in": "query", "description": "Return items that are active on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: min date", "required": false, "type": "string", "format": "date-time" }, { "name": "endActive", "in": "query", "description": "Return items that are active on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "startEvent", "in": "query", "description": "Return items with event start date on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "endEvent", "in": "query", "description": "Return items with event end date on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "regions", "in": "query", "description": "One or more impact regions\r\n\r\nValid Values: Americas = 9, Asia & Pacific = 10, Aftrica = 11, Europe & CIS = 12, Mid East & N Aftrica = 13", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "services", "in": "query", "description": "Services recipieint has subscribed to. \r\n\r\nValid Values: Medical, Security\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "severities", "in": "query", "description": "Alert severity\r\n\r\nValid values: Notice = 1, Advisory = 2, Special Advisory = 3, Warning = 4, Stand-by = 5, Evacuate: Non-Essential Staff = 6, Evacuate: Full Evacuation = 7\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "categories", "in": "query", "description": "Categories\r\n\r\nValid values: any valid category name (refer to taxonomy) e.g. Terror attack, Explosion\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "Accept-Language", "in": "header", "description": "The alert language as a 5-letter language code \r\n\r\nValid values: en-GB, ja-JP, zh-CN, ko-KR, fr-FR, de-DE, it-IT, es-ES", "required": true, "type": "string" }, { "name": "startPublish", "in": "query", "description": "Return items published on or after this date \r\n\r\nValid values: ISO 8601 date formatted date (default min date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "endPublish", "in": "query", "description": "Return items published on or before this date \r\n\r\nValid values: ISO 8601 date formatted date (default max date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "countries", "in": "query", "description": "One or more impact countries\r\n\r\nValid Values: 3 letter iso country code e.g GBR\r\n\r\nLimit: 20", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "sort", "in": "query", "description": "Field to sort by\r\n\r\nValid values: any field that exists in output e.g -published will sort via published field in descending order, +published will sort via published field in ascending order", "required": false, "type": "string" }, { "name": "page", "in": "query", "description": "Page number in the results to return\r\n\r\nValid values: any integer\r\n\r\nDefault value: 1", "required": false, "type": "integer", "format": "int32" }, { "name": "pageSize", "in": "query", "description": "Number of results in a page \r\n\r\nValid values: any integer between 1 and 250\r\n\r\nDefault value: 50", "required": false, "type": "integer", "format": "int32" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/Client_Full" }, "examples": { "application/json": { "Alerts": [ { "Assessment": "", "ManagerAdvice": "", "MoreDetail": "", "TravellerAdvice": "", "Summary": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
", "Graphic": "", "MediaLink": "", "Categories": [ "Airport disruption" ], "RelatedItems": [], "Taxonomy": [], "ActiveTo": "2017-11-02T00:00:00.0000000Z", "ActiveFrom": "2017-07-19T00:00:00.0000000Z", "CreatedDate": "2017-07-19T18:24:18.0000000Z", "EventStart": "", "EventEnd": "", "Locations": { "features": [ { "geometry": { "coordinates": [ 77.01416, 43.343158 ], "type": "Point" }, "properties": { "Name": "Almaty", "CountryNameList": "Kazakhstan", "CountryIsoList": "KAZ", "IsPrimary": true, "ImpactType": "Local", "ImpactRadius": "50" }, "type": "Feature" } ], "type": "FeatureCollection" }, "Id": "11964107-bd01-426f-a33a-3481a947ca35", "Title": "Almaty: Reconfirm flights during temporary closure of airport runway every Thursday until 1 November", "Status": "Live", "Severity": "Notice", "UpdatedDate": "2017-07-19T18:24:18.0000000Z", "TitleLocation": "Kazakhstan", "PublishAction": "Publish Major with email", "IsWorldWide": false, "SeverityAttributes": { "Name": "Notice", "Rank": "1", "Icon": "https://images.internationalsos.com//-/media/dynamic-content/severity-icons/severity1.png", "Color": "#009354" }, "Service": "Security", "Version": 1 } ], "Page": 1, "Showing": 1, "TotalHits": 1, "ResponseTime": 300 } } }, "400": { "description": "An invalid or missing input parameter will result in a bad request", "schema": { "$ref": "#/definitions/BadRequestExample" } } } } }, "/client/traveller": { "get": { "tags": [ "Version 3 (Clients)" ], "summary": "New alerts Api - consumed by clients and partners", "description": "Sample request: \r\n\r\n GET /client/traveller\r\n\r\nParameter Examples:\r\n\r\n Optional:\r\n {\r\n \"Regions\": 9,10,11\r\n \"Severities\": 1,2\r\n \"Categories\": Terror attack,Explosion\r\n \"Countries\": AFG,GBR\r\n }", "operationId": "Alerts_Find_client_traveller", "consumes": [], "produces": [ "application/json; version=3", "text/json; version=3", "application/xml; version=3", "text/xml; version=3" ], "parameters": [ { "name": "alertId", "in": "query", "description": "Sitecore id of alert\r\n\r\nValid values: any guid Niraj2\r\n\r\nDefault value: return all", "required": false, "type": "string", "format": "uuid" }, { "name": "globalOnly", "in": "query", "description": "If true, then includes all alerts covering more than one region OR any alerts with a 'worldwide' impact\r\n\r\nValid Values: true, false\r\n \r\nDefault value: false", "required": false, "type": "boolean" }, { "name": "status", "in": "query", "description": "The publish status\r\n\r\nValid values: Live, Archived\r\n\r\nDefault value: Live", "required": false, "type": "string", "enum": [ "Live", "Archived", "All" ] }, { "name": "startActive", "in": "query", "description": "Return items that are active on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: min date", "required": false, "type": "string", "format": "date-time" }, { "name": "endActive", "in": "query", "description": "Return items that are active on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "startEvent", "in": "query", "description": "Return items with event start date on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "endEvent", "in": "query", "description": "Return items with event end date on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "regions", "in": "query", "description": "One or more impact regions\r\n\r\nValid Values: Americas = 9, Asia & Pacific = 10, Aftrica = 11, Europe & CIS = 12, Mid East & N Aftrica = 13", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "services", "in": "query", "description": "Services recipieint has subscribed to. \r\n\r\nValid Values: Medical, Security\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "severities", "in": "query", "description": "Alert severity\r\n\r\nValid values: Notice = 1, Advisory = 2, Special Advisory = 3, Warning = 4, Stand-by = 5, Evacuate: Non-Essential Staff = 6, Evacuate: Full Evacuation = 7\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "categories", "in": "query", "description": "Event categories\r\n\r\nValid values: any valid event category name (refer to taxonomy api) e.g. Terror attack, Explosion\r\n\r\nDefault value: all Test345", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "Accept-Language", "in": "header", "description": "The alert language as a 5-letter language code \r\n\r\nValid values: en-GB, ja-JP, zh-CN, ko-KR, fr-FR, de-DE, it-IT, es-ES", "required": true, "type": "string" }, { "name": "startPublish", "in": "query", "description": "Return items published on or after this date \r\n\r\nValid values: ISO 8601 date formatted date (default min date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "endPublish", "in": "query", "description": "Return items published on or before this date \r\n\r\nValid values: ISO 8601 date formatted date (default max date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "countries", "in": "query", "description": "One or more impact countries\r\n\r\nValid Values: 3 letter iso country code e.g GBR\r\n\r\nLimit: 20", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "sort", "in": "query", "description": "Field to sort by\r\n\r\nValid values: any field that exists in output e.g -published will sort via published field in descending order, +published will sort via published field in ascending order", "required": false, "type": "string" }, { "name": "page", "in": "query", "description": "Page number in the results to return\r\n\r\nValid values: any integer\r\n\r\nDefault value: 1", "required": false, "type": "integer", "format": "int32" }, { "name": "pageSize", "in": "query", "description": "Number of results in a page \r\n\r\nValid values: any integer between 1 and 250\r\n\r\nDefault value: 50", "required": false, "type": "integer", "format": "int32" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/Client_Traveller" }, "examples": { "application/json": { "Alerts": [ { "MoreDetail": "", "TravellerAdvice": "", "Summary": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
", "Graphic": "", "MediaLink": "", "Categories": [ "Airport disruption" ], "RelatedItems": [], "Taxonomy": [], "ActiveTo": "2017-11-02T00:00:00.0000000Z", "ActiveFrom": "2017-07-19T00:00:00.0000000Z", "CreatedDate": "2017-07-19T18:24:18.0000000Z", "EventStart": "", "EventEnd": "", "Locations": { "features": [ { "geometry": { "coordinates": [ 77.01416, 43.343158 ], "type": "Point" }, "properties": { "Name": "Almaty", "CountryNameList": "Kazakhstan", "CountryIsoList": "KAZ", "IsPrimary": true, "ImpactType": "Local", "ImpactRadius": "50" }, "type": "Feature" } ], "type": "FeatureCollection" }, "Id": "11964107-bd01-426f-a33a-3481a947ca35", "Title": "Almaty: Reconfirm flights during temporary closure of airport runway every Thursday until 1 November", "Status": "Live", "Severity": "Notice", "UpdatedDate": "2017-07-19T18:24:18.0000000Z", "TitleLocation": "Kazakhstan", "PublishAction": "Publish Major with email", "IsWorldWide": false, "SeverityAttributes": { "Name": "Notice", "Rank": "1", "Icon": "https://images.internationalsos.com//-/media/dynamic-content/severity-icons/severity1.png", "Color": "#009354" }, "Service": "Security", "Version": 1 } ], "Page": 1, "Showing": 1, "TotalHits": 1, "ResponseTime": 300 } } }, "400": { "description": "An invalid or missing input parameter will result in a bad request", "schema": { "$ref": "#/definitions/BadRequestExample" } } } } }, "/client/summaries": { "get": { "tags": [ "Version 3 (Clients)" ], "summary": "New alerts Api - consumed by clients and partners", "description": "Sample request: \r\n\r\n GET /client/summaries\r\n\r\nParameter Examples:\r\n\r\n Optional:\r\n {\r\n \"Regions\": 9,10,11\r\n \"Severities\": 1,2\r\n \"Categories\": Terror attack,Explosion\r\n \"Countries\": AFG,GBR\r\n }", "operationId": "Alerts_Find_client_summaries", "consumes": [], "produces": [ "application/json; version=3", "text/json; version=3", "application/xml; version=3", "text/xml; version=3" ], "parameters": [ { "name": "alertId", "in": "query", "description": "Sitecore id of alert\r\n\r\nValid values: any guid Niraj2\r\n\r\nDefault value: return all", "required": false, "type": "string", "format": "uuid" }, { "name": "globalOnly", "in": "query", "description": "If true, then includes all alerts covering more than one region OR any alerts with a 'worldwide' impact\r\n\r\nValid Values: true, false\r\n \r\nDefault value: false", "required": false, "type": "boolean" }, { "name": "status", "in": "query", "description": "The publish status\r\n\r\nValid values: Live, Archived\r\n\r\nDefault value: Live", "required": false, "type": "string", "enum": [ "Live", "Archived", "All" ] }, { "name": "startActive", "in": "query", "description": "Return items that are active on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: min date", "required": false, "type": "string", "format": "date-time" }, { "name": "endActive", "in": "query", "description": "Return items that are active on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "startEvent", "in": "query", "description": "Return items with event start date on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "endEvent", "in": "query", "description": "Return items with event end date on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "regions", "in": "query", "description": "One or more impact regions\r\n\r\nValid Values: Americas = 9, Asia & Pacific = 10, Aftrica = 11, Europe & CIS = 12, Mid East & N Aftrica = 13", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "services", "in": "query", "description": "Services recipieint has subscribed to. \r\n\r\nValid Values: Medical, Security\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "severities", "in": "query", "description": "Alert severity\r\n\r\nValid values: Notice = 1, Advisory = 2, Special Advisory = 3, Warning = 4, Stand-by = 5, Evacuate: Non-Essential Staff = 6, Evacuate: Full Evacuation = 7\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "categories", "in": "query", "description": "Event categories\r\n\r\nValid values: any valid event category name (refer to taxonomy api) e.g. Terror attack, Explosion\r\n\r\nDefault value: all Test345", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "Accept-Language", "in": "header", "description": "The alert language as a 5-letter language code \r\n\r\nValid values: en-GB, ja-JP, zh-CN, ko-KR, fr-FR, de-DE, it-IT, es-ES", "required": true, "type": "string" }, { "name": "startPublish", "in": "query", "description": "Return items published on or after this date \r\n\r\nValid values: ISO 8601 date formatted date (default min date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "endPublish", "in": "query", "description": "Return items published on or before this date \r\n\r\nValid values: ISO 8601 date formatted date (default max date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "countries", "in": "query", "description": "One or more impact countries\r\n\r\nValid Values: 3 letter iso country code e.g GBR\r\n\r\nLimit: 20", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "sort", "in": "query", "description": "Field to sort by\r\n\r\nValid values: any field that exists in output e.g -published will sort via published field in descending order, +published will sort via published field in ascending order", "required": false, "type": "string" }, { "name": "page", "in": "query", "description": "Page number in the results to return\r\n\r\nValid values: any integer\r\n\r\nDefault value: 1", "required": false, "type": "integer", "format": "int32" }, { "name": "pageSize", "in": "query", "description": "Number of results in a page \r\n\r\nValid values: any integer between 1 and 250\r\n\r\nDefault value: 50", "required": false, "type": "integer", "format": "int32" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/Client_Summaries" }, "examples": { "application/json": { "Alerts": [ { "Summary": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
", "Graphic": "", "MediaLink": "", "Categories": [ "Airport disruption" ], "RelatedItems": [], "Taxonomy": [], "ActiveTo": "2017-11-02T00:00:00.0000000Z", "ActiveFrom": "2017-07-19T00:00:00.0000000Z", "CreatedDate": "2017-07-19T18:24:18.0000000Z", "EventStart": "", "EventEnd": "", "Locations": { "features": [ { "geometry": { "coordinates": [ 77.01416, 43.343158 ], "type": "Point" }, "properties": { "Name": "Almaty", "CountryNameList": "Kazakhstan", "CountryIsoList": "KAZ", "IsPrimary": true, "ImpactType": "Local", "ImpactRadius": "50" }, "type": "Feature" } ], "type": "FeatureCollection" }, "Id": "11964107-bd01-426f-a33a-3481a947ca35", "Title": "Almaty: Reconfirm flights during temporary closure of airport runway every Thursday until 1 November", "Status": "Live", "Severity": "Notice", "UpdatedDate": "2017-07-19T18:24:18.0000000Z", "TitleLocation": "Kazakhstan", "PublishAction": "Publish Major with email", "IsWorldWide": false, "SeverityAttributes": { "Name": "Notice", "Rank": "1", "Icon": "https://images.internationalsos.com//-/media/dynamic-content/severity-icons/severity1.png", "Color": "#009354" }, "Service": "Security", "Version": 1 } ], "Page": 1, "Showing": 1, "TotalHits": 1, "ResponseTime": 300 } } }, "400": { "description": "An invalid or missing input parameter will result in a bad request", "schema": { "$ref": "#/definitions/BadRequestExample" } } } } }, "/client/headlines": { "get": { "tags": [ "Version 3 (Clients)" ], "summary": "New alerts Api - consumed by clients and partners", "description": "Sample request: \r\n\r\n GET /client/headlines\r\n\r\nParameter Examples:\r\n\r\n Optional:\r\n {\r\n \"Regions\": 9,10,11\r\n \"Severities\": 1,2\r\n \"Categories\": Terror attack,Explosion\r\n \"Countries\": AFG,GBR\r\n }", "operationId": "Alerts_Find_client_headlines", "consumes": [], "produces": [ "application/json; version=3", "text/json; version=3", "application/xml; version=3", "text/xml; version=3" ], "parameters": [ { "name": "alertId", "in": "query", "description": "Sitecore id of alert\r\n\r\nValid values: any guid Niraj2\r\n\r\nDefault value: return all", "required": false, "type": "string", "format": "uuid" }, { "name": "globalOnly", "in": "query", "description": "If true, then includes all alerts covering more than one region OR any alerts with a 'worldwide' impact\r\n\r\nValid Values: true, false\r\n \r\nDefault value: false", "required": false, "type": "boolean" }, { "name": "status", "in": "query", "description": "The publish status\r\n\r\nValid values: Live, Archived\r\n\r\nDefault value: Live", "required": false, "type": "string", "enum": [ "Live", "Archived", "All" ] }, { "name": "startActive", "in": "query", "description": "Return items that are active on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: min date", "required": false, "type": "string", "format": "date-time" }, { "name": "endActive", "in": "query", "description": "Return items that are active on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "startEvent", "in": "query", "description": "Return items with event start date on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "endEvent", "in": "query", "description": "Return items with event end date on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "regions", "in": "query", "description": "One or more impact regions\r\n\r\nValid Values: Americas = 9, Asia & Pacific = 10, Aftrica = 11, Europe & CIS = 12, Mid East & N Aftrica = 13", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "services", "in": "query", "description": "Services recipieint has subscribed to. \r\n\r\nValid Values: Medical, Security\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "severities", "in": "query", "description": "Alert severity\r\n\r\nValid values: Notice = 1, Advisory = 2, Special Advisory = 3, Warning = 4, Stand-by = 5, Evacuate: Non-Essential Staff = 6, Evacuate: Full Evacuation = 7\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "categories", "in": "query", "description": "Event categories\r\n\r\nValid values: any valid event category name (refer to taxonomy api) e.g. Terror attack, Explosion\r\n\r\nDefault value: all Test345", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "Accept-Language", "in": "header", "description": "The alert language as a 5-letter language code \r\n\r\nValid values: en-GB, ja-JP, zh-CN, ko-KR, fr-FR, de-DE, it-IT, es-ES", "required": true, "type": "string" }, { "name": "startPublish", "in": "query", "description": "Return items published on or after this date \r\n\r\nValid values: ISO 8601 date formatted date (default min date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "endPublish", "in": "query", "description": "Return items published on or before this date \r\n\r\nValid values: ISO 8601 date formatted date (default max date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "countries", "in": "query", "description": "One or more impact countries\r\n\r\nValid Values: 3 letter iso country code e.g GBR\r\n\r\nLimit: 20", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "sort", "in": "query", "description": "Field to sort by\r\n\r\nValid values: any field that exists in output e.g -published will sort via published field in descending order, +published will sort via published field in ascending order", "required": false, "type": "string" }, { "name": "page", "in": "query", "description": "Page number in the results to return\r\n\r\nValid values: any integer\r\n\r\nDefault value: 1", "required": false, "type": "integer", "format": "int32" }, { "name": "pageSize", "in": "query", "description": "Number of results in a page \r\n\r\nValid values: any integer between 1 and 250\r\n\r\nDefault value: 50", "required": false, "type": "integer", "format": "int32" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/Client_Headlines" }, "examples": { "application/json": { "Alerts": [ { "MediaLink": "", "Categories": [ "Airport disruption" ], "RelatedItems": [], "Taxonomy": [], "ActiveTo": "2017-11-02T00:00:00.0000000Z", "ActiveFrom": "2017-07-19T00:00:00.0000000Z", "CreatedDate": "2017-07-19T18:24:18.0000000Z", "EventStart": "", "EventEnd": "", "Locations": { "features": [ { "geometry": { "coordinates": [ 77.01416, 43.343158 ], "type": "Point" }, "properties": { "Name": "Almaty", "CountryNameList": "Kazakhstan", "CountryIsoList": "KAZ", "IsPrimary": true, "ImpactType": "Local", "ImpactRadius": "50" }, "type": "Feature" } ], "type": "FeatureCollection" }, "Id": "11964107-bd01-426f-a33a-3481a947ca35", "Title": "Almaty: Reconfirm flights during temporary closure of airport runway every Thursday until 1 November", "Status": "Live", "Severity": "Notice", "UpdatedDate": "2017-07-19T18:24:18.0000000Z", "TitleLocation": "Kazakhstan", "PublishAction": "Publish Major with email", "IsWorldWide": false, "SeverityAttributes": { "Name": "Notice", "Rank": "1", "Icon": "https://images.internationalsos.com//-/media/dynamic-content/severity-icons/severity1.png", "Color": "#009354" }, "Service": "Security", "Version": 1 } ], "Page": 1, "Showing": 1, "TotalHits": 1, "ResponseTime": 300 } } }, "400": { "description": "An invalid or missing input parameter will result in a bad request", "schema": { "$ref": "#/definitions/BadRequestExample" } } } } }, "/partner/full": { "get": { "tags": [ "Version 3 (Partners)" ], "summary": "New alerts Api - consumed by clients and partners", "description": "Sample request: \r\n\r\n GET /partner/full\r\n\r\nParameter Examples:\r\n\r\n Optional:\r\n {\r\n \"Regions\": 9,10,11\r\n \"Severities\": 1,2\r\n \"Categories\": Terror attack,Explosion\r\n \"Countries\": AFG,GBR\r\n }", "operationId": "Alerts_Find_partner_full", "consumes": [], "produces": [ "application/json; version=3", "text/json; version=3", "application/xml; version=3", "text/xml; version=3" ], "parameters": [ { "name": "alertId", "in": "query", "description": "Sitecore id of alert\r\n\r\nValid values: any guid Niraj2\r\n\r\nDefault value: return all", "required": false, "type": "string", "format": "uuid" }, { "name": "globalOnly", "in": "query", "description": "If true, then includes all alerts covering more than one region OR any alerts with a 'worldwide' impact\r\n\r\nValid Values: true, false\r\n \r\nDefault value: false", "required": false, "type": "boolean" }, { "name": "status", "in": "query", "description": "The publish status\r\n\r\nValid values: Live, Archived\r\n\r\nDefault value: Live", "required": false, "type": "string", "enum": [ "Live", "Archived", "All" ] }, { "name": "startActive", "in": "query", "description": "Return items that are active on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: min date", "required": false, "type": "string", "format": "date-time" }, { "name": "endActive", "in": "query", "description": "Return items that are active on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "startEvent", "in": "query", "description": "Return items with event start date on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "endEvent", "in": "query", "description": "Return items with event end date on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "regions", "in": "query", "description": "One or more impact regions\r\n\r\nValid Values: Americas = 9, Asia & Pacific = 10, Aftrica = 11, Europe & CIS = 12, Mid East & N Aftrica = 13", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "services", "in": "query", "description": "Services recipieint has subscribed to. \r\n\r\nValid Values: Medical, Security\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "severities", "in": "query", "description": "Alert severity\r\n\r\nValid values: Notice = 1, Advisory = 2, Special Advisory = 3, Warning = 4, Stand-by = 5, Evacuate: Non-Essential Staff = 6, Evacuate: Full Evacuation = 7\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "categories", "in": "query", "description": "Event categories\r\n\r\nValid values: any valid event category name (refer to taxonomy api) e.g. Terror attack, Explosion\r\n\r\nDefault value: all Test345", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "Accept-Language", "in": "header", "description": "The alert language as a 5-letter language code \r\n\r\nValid values: en-GB, ja-JP, zh-CN, ko-KR, fr-FR, de-DE, it-IT, es-ES", "required": true, "type": "string" }, { "name": "startPublish", "in": "query", "description": "Return items published on or after this date \r\n\r\nValid values: ISO 8601 date formatted date (default min date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "endPublish", "in": "query", "description": "Return items published on or before this date \r\n\r\nValid values: ISO 8601 date formatted date (default max date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "countries", "in": "query", "description": "One or more impact countries\r\n\r\nValid Values: 3 letter iso country code e.g GBR\r\n\r\nLimit: 20", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "sort", "in": "query", "description": "Field to sort by\r\n\r\nValid values: any field that exists in output e.g -published will sort via published field in descending order, +published will sort via published field in ascending order", "required": false, "type": "string" }, { "name": "page", "in": "query", "description": "Page number in the results to return\r\n\r\nValid values: any integer\r\n\r\nDefault value: 1", "required": false, "type": "integer", "format": "int32" }, { "name": "pageSize", "in": "query", "description": "Number of results in a page \r\n\r\nValid values: any integer between 1 and 250\r\n\r\nDefault value: 50", "required": false, "type": "integer", "format": "int32" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/Partner_Full" }, "examples": { "application/json": { "Alerts": [ { "Assessment": "", "ManagerAdvice": "", "MoreDetail": "", "TravellerAdvice": "", "Summary": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
", "Categories": [ "Airport disruption" ], "Taxonomy": [], "ActiveTo": "2017-11-02T00:00:00.0000000Z", "ActiveFrom": "2017-07-19T00:00:00.0000000Z", "CreatedDate": "2017-07-19T18:24:18.0000000Z", "EventStart": "", "EventEnd": "", "Locations": { "features": [ { "geometry": { "coordinates": [ 77.01416, 43.343158 ], "type": "Point" }, "properties": { "Name": "Almaty", "CountryNameList": "Kazakhstan", "CountryIsoList": "KAZ", "IsPrimary": true, "ImpactType": "Local", "ImpactRadius": "50" }, "type": "Feature" } ], "type": "FeatureCollection" }, "Id": "11964107-bd01-426f-a33a-3481a947ca35", "Title": "Almaty: Reconfirm flights during temporary closure of airport runway every Thursday until 1 November", "Status": "Live", "Severity": "Notice", "UpdatedDate": "2017-07-19T18:24:18.0000000Z", "TitleLocation": "Kazakhstan", "PublishAction": "Publish Major with email", "IsWorldWide": false, "SeverityAttributes": { "Name": "Notice", "Rank": "1", "Icon": "https://images.internationalsos.com//-/media/dynamic-content/severity-icons/severity1.png", "Color": "#009354" }, "Service": "Security", "Version": 1 } ], "Page": 1, "Showing": 1, "TotalHits": 1, "ResponseTime": 300 } } }, "400": { "description": "An invalid or missing input parameter will result in a bad request", "schema": { "$ref": "#/definitions/BadRequestExample" } } } } }, "/partner/traveller": { "get": { "tags": [ "Version 3 (Partners)" ], "summary": "New alerts Api - consumed by clients and partners", "description": "Sample request: \r\n\r\n GET /partner/traveller\r\n\r\nParameter Examples:\r\n\r\n Optional:\r\n {\r\n \"Regions\": 9,10,11\r\n \"Severities\": 1,2\r\n \"Categories\": Terror attack,Explosion\r\n \"Countries\": AFG,GBR\r\n }", "operationId": "Alerts_Find_partner_traveller", "consumes": [], "produces": [ "application/json; version=3", "text/json; version=3", "application/xml; version=3", "text/xml; version=3" ], "parameters": [ { "name": "alertId", "in": "query", "description": "Sitecore id of alert\r\n\r\nValid values: any guid Niraj2\r\n\r\nDefault value: return all", "required": false, "type": "string", "format": "uuid" }, { "name": "globalOnly", "in": "query", "description": "If true, then includes all alerts covering more than one region OR any alerts with a 'worldwide' impact\r\n\r\nValid Values: true, false\r\n \r\nDefault value: false", "required": false, "type": "boolean" }, { "name": "status", "in": "query", "description": "The publish status\r\n\r\nValid values: Live, Archived\r\n\r\nDefault value: Live", "required": false, "type": "string", "enum": [ "Live", "Archived", "All" ] }, { "name": "startActive", "in": "query", "description": "Return items that are active on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: min date", "required": false, "type": "string", "format": "date-time" }, { "name": "endActive", "in": "query", "description": "Return items that are active on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "startEvent", "in": "query", "description": "Return items with event start date on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "endEvent", "in": "query", "description": "Return items with event end date on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "regions", "in": "query", "description": "One or more impact regions\r\n\r\nValid Values: Americas = 9, Asia & Pacific = 10, Aftrica = 11, Europe & CIS = 12, Mid East & N Aftrica = 13", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "services", "in": "query", "description": "Services recipieint has subscribed to. \r\n\r\nValid Values: Medical, Security\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "severities", "in": "query", "description": "Alert severity\r\n\r\nValid values: Notice = 1, Advisory = 2, Special Advisory = 3, Warning = 4, Stand-by = 5, Evacuate: Non-Essential Staff = 6, Evacuate: Full Evacuation = 7\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "categories", "in": "query", "description": "Event categories\r\n\r\nValid values: any valid event category name (refer to taxonomy api) e.g. Terror attack, Explosion\r\n\r\nDefault value: all Test345", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "Accept-Language", "in": "header", "description": "The alert language as a 5-letter language code \r\n\r\nValid values: en-GB, ja-JP, zh-CN, ko-KR, fr-FR, de-DE, it-IT, es-ES", "required": true, "type": "string" }, { "name": "startPublish", "in": "query", "description": "Return items published on or after this date \r\n\r\nValid values: ISO 8601 date formatted date (default min date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "endPublish", "in": "query", "description": "Return items published on or before this date \r\n\r\nValid values: ISO 8601 date formatted date (default max date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "countries", "in": "query", "description": "One or more impact countries\r\n\r\nValid Values: 3 letter iso country code e.g GBR\r\n\r\nLimit: 20", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "sort", "in": "query", "description": "Field to sort by\r\n\r\nValid values: any field that exists in output e.g -published will sort via published field in descending order, +published will sort via published field in ascending order", "required": false, "type": "string" }, { "name": "page", "in": "query", "description": "Page number in the results to return\r\n\r\nValid values: any integer\r\n\r\nDefault value: 1", "required": false, "type": "integer", "format": "int32" }, { "name": "pageSize", "in": "query", "description": "Number of results in a page \r\n\r\nValid values: any integer between 1 and 250\r\n\r\nDefault value: 50", "required": false, "type": "integer", "format": "int32" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/Partner_Traveller" }, "examples": { "application/json": { "Alerts": [ { "MoreDetail": "", "TravellerAdvice": "", "Summary": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
", "Categories": [ "Airport disruption" ], "Taxonomy": [], "ActiveTo": "2017-11-02T00:00:00.0000000Z", "ActiveFrom": "2017-07-19T00:00:00.0000000Z", "CreatedDate": "2017-07-19T18:24:18.0000000Z", "EventStart": "", "EventEnd": "", "Locations": { "features": [ { "geometry": { "coordinates": [ 77.01416, 43.343158 ], "type": "Point" }, "properties": { "Name": "Almaty", "CountryNameList": "Kazakhstan", "CountryIsoList": "KAZ", "IsPrimary": true, "ImpactType": "Local", "ImpactRadius": "50" }, "type": "Feature" } ], "type": "FeatureCollection" }, "Id": "11964107-bd01-426f-a33a-3481a947ca35", "Title": "Almaty: Reconfirm flights during temporary closure of airport runway every Thursday until 1 November", "Status": "Live", "Severity": "Notice", "UpdatedDate": "2017-07-19T18:24:18.0000000Z", "TitleLocation": "Kazakhstan", "PublishAction": "Publish Major with email", "IsWorldWide": false, "SeverityAttributes": { "Name": "Notice", "Rank": "1", "Icon": "https://images.internationalsos.com//-/media/dynamic-content/severity-icons/severity1.png", "Color": "#009354" }, "Service": "Security", "Version": 1 } ], "Page": 1, "Showing": 1, "TotalHits": 1, "ResponseTime": 300 } } }, "400": { "description": "An invalid or missing input parameter will result in a bad request", "schema": { "$ref": "#/definitions/BadRequestExample" } } } } }, "/partner/summaries": { "get": { "tags": [ "Version 3 (Partners)" ], "summary": "New alerts Api - consumed by clients and partners", "description": "Sample request: \r\n\r\n GET /partner/summaries\r\n\r\nParameter Examples:\r\n\r\n Optional:\r\n {\r\n \"Regions\": 9,10,11\r\n \"Severities\": 1,2\r\n \"Categories\": Terror attack,Explosion\r\n \"Countries\": AFG,GBR\r\n }", "operationId": "Alerts_Find_partner_summaries", "consumes": [], "produces": [ "application/json; version=3", "text/json; version=3", "application/xml; version=3", "text/xml; version=3" ], "parameters": [ { "name": "alertId", "in": "query", "description": "Sitecore id of alert\r\n\r\nValid values: any guid Niraj2\r\n\r\nDefault value: return all", "required": false, "type": "string", "format": "uuid" }, { "name": "globalOnly", "in": "query", "description": "If true, then includes all alerts covering more than one region OR any alerts with a 'worldwide' impact\r\n\r\nValid Values: true, false\r\n \r\nDefault value: false", "required": false, "type": "boolean" }, { "name": "status", "in": "query", "description": "The publish status\r\n\r\nValid values: Live, Archived\r\n\r\nDefault value: Live", "required": false, "type": "string", "enum": [ "Live", "Archived", "All" ] }, { "name": "startActive", "in": "query", "description": "Return items that are active on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: min date", "required": false, "type": "string", "format": "date-time" }, { "name": "endActive", "in": "query", "description": "Return items that are active on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "startEvent", "in": "query", "description": "Return items with event start date on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "endEvent", "in": "query", "description": "Return items with event end date on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "regions", "in": "query", "description": "One or more impact regions\r\n\r\nValid Values: Americas = 9, Asia & Pacific = 10, Aftrica = 11, Europe & CIS = 12, Mid East & N Aftrica = 13", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "services", "in": "query", "description": "Services recipieint has subscribed to. \r\n\r\nValid Values: Medical, Security\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "severities", "in": "query", "description": "Alert severity\r\n\r\nValid values: Notice = 1, Advisory = 2, Special Advisory = 3, Warning = 4, Stand-by = 5, Evacuate: Non-Essential Staff = 6, Evacuate: Full Evacuation = 7\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "categories", "in": "query", "description": "Event categories\r\n\r\nValid values: any valid event category name (refer to taxonomy api) e.g. Terror attack, Explosion\r\n\r\nDefault value: all Test345", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "Accept-Language", "in": "header", "description": "The alert language as a 5-letter language code \r\n\r\nValid values: en-GB, ja-JP, zh-CN, ko-KR, fr-FR, de-DE, it-IT, es-ES", "required": true, "type": "string" }, { "name": "startPublish", "in": "query", "description": "Return items published on or after this date \r\n\r\nValid values: ISO 8601 date formatted date (default min date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "endPublish", "in": "query", "description": "Return items published on or before this date \r\n\r\nValid values: ISO 8601 date formatted date (default max date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "countries", "in": "query", "description": "One or more impact countries\r\n\r\nValid Values: 3 letter iso country code e.g GBR\r\n\r\nLimit: 20", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "sort", "in": "query", "description": "Field to sort by\r\n\r\nValid values: any field that exists in output e.g -published will sort via published field in descending order, +published will sort via published field in ascending order", "required": false, "type": "string" }, { "name": "page", "in": "query", "description": "Page number in the results to return\r\n\r\nValid values: any integer\r\n\r\nDefault value: 1", "required": false, "type": "integer", "format": "int32" }, { "name": "pageSize", "in": "query", "description": "Number of results in a page \r\n\r\nValid values: any integer between 1 and 250\r\n\r\nDefault value: 50", "required": false, "type": "integer", "format": "int32" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/Partner_Summaries" }, "examples": { "application/json": { "Alerts": [ { "Summary": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
", "Categories": [ "Airport disruption" ], "Taxonomy": [], "ActiveTo": "2017-11-02T00:00:00.0000000Z", "ActiveFrom": "2017-07-19T00:00:00.0000000Z", "CreatedDate": "2017-07-19T18:24:18.0000000Z", "EventStart": "", "EventEnd": "", "Locations": { "features": [ { "geometry": { "coordinates": [ 77.01416, 43.343158 ], "type": "Point" }, "properties": { "Name": "Almaty", "CountryNameList": "Kazakhstan", "CountryIsoList": "KAZ", "IsPrimary": true, "ImpactType": "Local", "ImpactRadius": "50" }, "type": "Feature" } ], "type": "FeatureCollection" }, "Id": "11964107-bd01-426f-a33a-3481a947ca35", "Title": "Almaty: Reconfirm flights during temporary closure of airport runway every Thursday until 1 November", "Status": "Live", "Severity": "Notice", "UpdatedDate": "2017-07-19T18:24:18.0000000Z", "TitleLocation": "Kazakhstan", "PublishAction": "Publish Major with email", "IsWorldWide": false, "SeverityAttributes": { "Name": "Notice", "Rank": "1", "Icon": "https://images.internationalsos.com//-/media/dynamic-content/severity-icons/severity1.png", "Color": "#009354" }, "Service": "Security", "Version": 1 } ], "Page": 1, "Showing": 1, "TotalHits": 1, "ResponseTime": 300 } } }, "400": { "description": "An invalid or missing input parameter will result in a bad request", "schema": { "$ref": "#/definitions/BadRequestExample" } } } } }, "/partner/headlines": { "get": { "tags": [ "Version 3 (Partners)" ], "summary": "New alerts Api - consumed by clients and partners", "description": "Sample request: \r\n\r\n GET /partner/headlines\r\n\r\nParameter Examples:\r\n\r\n Optional:\r\n {\r\n \"Regions\": 9,10,11\r\n \"Severities\": 1,2\r\n \"Categories\": Terror attack,Explosion\r\n \"Countries\": AFG,GBR\r\n }", "operationId": "Alerts_Find_partner_headlines", "consumes": [], "produces": [ "application/json; version=3", "text/json; version=3", "application/xml; version=3", "text/xml; version=3" ], "parameters": [ { "name": "alertId", "in": "query", "description": "Sitecore id of alert\r\n\r\nValid values: any guid Niraj2\r\n\r\nDefault value: return all", "required": false, "type": "string", "format": "uuid" }, { "name": "globalOnly", "in": "query", "description": "If true, then includes all alerts covering more than one region OR any alerts with a 'worldwide' impact\r\n\r\nValid Values: true, false\r\n \r\nDefault value: false", "required": false, "type": "boolean" }, { "name": "status", "in": "query", "description": "The publish status\r\n\r\nValid values: Live, Archived\r\n\r\nDefault value: Live", "required": false, "type": "string", "enum": [ "Live", "Archived", "All" ] }, { "name": "startActive", "in": "query", "description": "Return items that are active on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: min date", "required": false, "type": "string", "format": "date-time" }, { "name": "endActive", "in": "query", "description": "Return items that are active on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "startEvent", "in": "query", "description": "Return items with event start date on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "endEvent", "in": "query", "description": "Return items with event end date on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "regions", "in": "query", "description": "One or more impact regions\r\n\r\nValid Values: Americas = 9, Asia & Pacific = 10, Aftrica = 11, Europe & CIS = 12, Mid East & N Aftrica = 13", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "services", "in": "query", "description": "Services recipieint has subscribed to. \r\n\r\nValid Values: Medical, Security\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "severities", "in": "query", "description": "Alert severity\r\n\r\nValid values: Notice = 1, Advisory = 2, Special Advisory = 3, Warning = 4, Stand-by = 5, Evacuate: Non-Essential Staff = 6, Evacuate: Full Evacuation = 7\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "categories", "in": "query", "description": "Event categories\r\n\r\nValid values: any valid event category name (refer to taxonomy api) e.g. Terror attack, Explosion\r\n\r\nDefault value: all Test345", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "Accept-Language", "in": "header", "description": "The alert language as a 5-letter language code \r\n\r\nValid values: en-GB, ja-JP, zh-CN, ko-KR, fr-FR, de-DE, it-IT, es-ES", "required": true, "type": "string" }, { "name": "startPublish", "in": "query", "description": "Return items published on or after this date \r\n\r\nValid values: ISO 8601 date formatted date (default min date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "endPublish", "in": "query", "description": "Return items published on or before this date \r\n\r\nValid values: ISO 8601 date formatted date (default max date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "countries", "in": "query", "description": "One or more impact countries\r\n\r\nValid Values: 3 letter iso country code e.g GBR\r\n\r\nLimit: 20", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "sort", "in": "query", "description": "Field to sort by\r\n\r\nValid values: any field that exists in output e.g -published will sort via published field in descending order, +published will sort via published field in ascending order", "required": false, "type": "string" }, { "name": "page", "in": "query", "description": "Page number in the results to return\r\n\r\nValid values: any integer\r\n\r\nDefault value: 1", "required": false, "type": "integer", "format": "int32" }, { "name": "pageSize", "in": "query", "description": "Number of results in a page \r\n\r\nValid values: any integer between 1 and 250\r\n\r\nDefault value: 50", "required": false, "type": "integer", "format": "int32" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/Partner_Headlines" }, "examples": { "application/json": { "Alerts": [ { "Categories": [ "Airport disruption" ], "Taxonomy": [], "ActiveTo": "2017-11-02T00:00:00.0000000Z", "ActiveFrom": "2017-07-19T00:00:00.0000000Z", "CreatedDate": "2017-07-19T18:24:18.0000000Z", "EventStart": "", "EventEnd": "", "Locations": { "features": [ { "geometry": { "coordinates": [ 77.01416, 43.343158 ], "type": "Point" }, "properties": { "Name": "Almaty", "CountryNameList": "Kazakhstan", "CountryIsoList": "KAZ", "IsPrimary": true, "ImpactType": "Local", "ImpactRadius": "50" }, "type": "Feature" } ], "type": "FeatureCollection" }, "Id": "11964107-bd01-426f-a33a-3481a947ca35", "Title": "Almaty: Reconfirm flights during temporary closure of airport runway every Thursday until 1 November", "Status": "Live", "Severity": "Notice", "UpdatedDate": "2017-07-19T18:24:18.0000000Z", "TitleLocation": "Kazakhstan", "PublishAction": "Publish Major with email", "IsWorldWide": false, "SeverityAttributes": { "Name": "Notice", "Rank": "1", "Icon": "https://images.internationalsos.com//-/media/dynamic-content/severity-icons/severity1.png", "Color": "#009354" }, "Service": "Security", "Version": 1 } ], "Page": 1, "Showing": 1, "TotalHits": 1, "ResponseTime": 300 } } }, "400": { "description": "An invalid or missing input parameter will result in a bad request", "schema": { "$ref": "#/definitions/BadRequestExample" } } } } }, "/thirdparty/full": { "get": { "tags": [ "Version 3 (Third Parties)" ], "summary": "New alerts Api - consumed by clients and partners", "description": "Sample request: \r\n\r\n GET /thirdparty/full\r\n\r\nParameter Examples:\r\n\r\n Optional:\r\n {\r\n \"Regions\": 9,10,11\r\n \"Severities\": 1,2\r\n \"Categories\": Terror attack,Explosion\r\n \"Countries\": AFG,GBR\r\n }", "operationId": "Alerts_Find_thirdparty_full", "consumes": [], "produces": [ "application/json; version=3", "text/json; version=3", "application/xml; version=3", "text/xml; version=3" ], "parameters": [ { "name": "alertId", "in": "query", "description": "Sitecore id of alert\r\n\r\nValid values: any guid Niraj2\r\n\r\nDefault value: return all", "required": false, "type": "string", "format": "uuid" }, { "name": "globalOnly", "in": "query", "description": "If true, then includes all alerts covering more than one region OR any alerts with a 'worldwide' impact\r\n\r\nValid Values: true, false\r\n \r\nDefault value: false", "required": false, "type": "boolean" }, { "name": "status", "in": "query", "description": "The publish status\r\n\r\nValid values: Live, Archived\r\n\r\nDefault value: Live", "required": false, "type": "string", "enum": [ "Live", "Archived", "All" ] }, { "name": "startActive", "in": "query", "description": "Return items that are active on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: min date", "required": false, "type": "string", "format": "date-time" }, { "name": "endActive", "in": "query", "description": "Return items that are active on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "startEvent", "in": "query", "description": "Return items with event start date on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "endEvent", "in": "query", "description": "Return items with event end date on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "regions", "in": "query", "description": "One or more impact regions\r\n\r\nValid Values: Americas = 9, Asia & Pacific = 10, Aftrica = 11, Europe & CIS = 12, Mid East & N Aftrica = 13", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "services", "in": "query", "description": "Services recipieint has subscribed to. \r\n\r\nValid Values: Medical, Security\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "severities", "in": "query", "description": "Alert severity\r\n\r\nValid values: Notice = 1, Advisory = 2, Special Advisory = 3, Warning = 4, Stand-by = 5, Evacuate: Non-Essential Staff = 6, Evacuate: Full Evacuation = 7\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "categories", "in": "query", "description": "Event categories\r\n\r\nValid values: any valid event category name (refer to taxonomy api) e.g. Terror attack, Explosion\r\n\r\nDefault value: all Test345", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "Accept-Language", "in": "header", "description": "The alert language as a 5-letter language code \r\n\r\nValid values: en-GB, ja-JP, zh-CN, ko-KR, fr-FR, de-DE, it-IT, es-ES", "required": true, "type": "string" }, { "name": "startPublish", "in": "query", "description": "Return items published on or after this date \r\n\r\nValid values: ISO 8601 date formatted date (default min date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "endPublish", "in": "query", "description": "Return items published on or before this date \r\n\r\nValid values: ISO 8601 date formatted date (default max date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "countries", "in": "query", "description": "One or more impact countries\r\n\r\nValid Values: 3 letter iso country code e.g GBR\r\n\r\nLimit: 20", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "sort", "in": "query", "description": "Field to sort by\r\n\r\nValid values: any field that exists in output e.g -published will sort via published field in descending order, +published will sort via published field in ascending order", "required": false, "type": "string" }, { "name": "page", "in": "query", "description": "Page number in the results to return\r\n\r\nValid values: any integer\r\n\r\nDefault value: 1", "required": false, "type": "integer", "format": "int32" }, { "name": "pageSize", "in": "query", "description": "Number of results in a page \r\n\r\nValid values: any integer between 1 and 250\r\n\r\nDefault value: 50", "required": false, "type": "integer", "format": "int32" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/Thirdparty_Full" }, "examples": { "application/json": { "Alerts": [ { "Assessment": "", "ManagerAdvice": "", "MoreDetail": "", "TravellerAdvice": "", "Summary": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
", "CreatedDate": "2017-07-19T18:24:18.0000000Z", "EventStart": "", "EventEnd": "", "Locations": [ { "GeoName": "Almaty", "CountryIsoList": "KAZ", "CountryNameList": "Kazakhstan" } ], "Id": "11964107-bd01-426f-a33a-3481a947ca35", "Title": "Almaty: Reconfirm flights during temporary closure of airport runway every Thursday until 1 November", "Status": "Live", "Severity": "Notice", "UpdatedDate": "2017-07-19T18:24:18.0000000Z", "TitleLocation": "Kazakhstan", "PublishAction": "Publish Major with email", "IsWorldWide": false, "SeverityAttributes": { "Name": "Notice", "Rank": "1", "Icon": "https://images.internationalsos.com//-/media/dynamic-content/severity-icons/severity1.png", "Color": "#009354" }, "Service": "Security", "Version": 1 } ], "Page": 1, "Showing": 1, "TotalHits": 1, "ResponseTime": 300 } } }, "400": { "description": "An invalid or missing input parameter will result in a bad request", "schema": { "$ref": "#/definitions/BadRequestExample" } } } } }, "/thirdparty/traveller": { "get": { "tags": [ "Version 3 (Third Parties)" ], "summary": "New alerts Api - consumed by clients and partners", "description": "Sample request: \r\n\r\n GET /thirdparty/traveller\r\n\r\nParameter Examples:\r\n\r\n Optional:\r\n {\r\n \"Regions\": 9,10,11\r\n \"Severities\": 1,2\r\n \"Categories\": Terror attack,Explosion\r\n \"Countries\": AFG,GBR\r\n }", "operationId": "Alerts_Find_thirdparty_traveller", "consumes": [], "produces": [ "application/json; version=3", "text/json; version=3", "application/xml; version=3", "text/xml; version=3" ], "parameters": [ { "name": "alertId", "in": "query", "description": "Sitecore id of alert\r\n\r\nValid values: any guid Niraj2\r\n\r\nDefault value: return all", "required": false, "type": "string", "format": "uuid" }, { "name": "globalOnly", "in": "query", "description": "If true, then includes all alerts covering more than one region OR any alerts with a 'worldwide' impact\r\n\r\nValid Values: true, false\r\n \r\nDefault value: false", "required": false, "type": "boolean" }, { "name": "status", "in": "query", "description": "The publish status\r\n\r\nValid values: Live, Archived\r\n\r\nDefault value: Live", "required": false, "type": "string", "enum": [ "Live", "Archived", "All" ] }, { "name": "startActive", "in": "query", "description": "Return items that are active on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: min date", "required": false, "type": "string", "format": "date-time" }, { "name": "endActive", "in": "query", "description": "Return items that are active on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "startEvent", "in": "query", "description": "Return items with event start date on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "endEvent", "in": "query", "description": "Return items with event end date on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "regions", "in": "query", "description": "One or more impact regions\r\n\r\nValid Values: Americas = 9, Asia & Pacific = 10, Aftrica = 11, Europe & CIS = 12, Mid East & N Aftrica = 13", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "services", "in": "query", "description": "Services recipieint has subscribed to. \r\n\r\nValid Values: Medical, Security\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "severities", "in": "query", "description": "Alert severity\r\n\r\nValid values: Notice = 1, Advisory = 2, Special Advisory = 3, Warning = 4, Stand-by = 5, Evacuate: Non-Essential Staff = 6, Evacuate: Full Evacuation = 7\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "categories", "in": "query", "description": "Event categories\r\n\r\nValid values: any valid event category name (refer to taxonomy api) e.g. Terror attack, Explosion\r\n\r\nDefault value: all Test345", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "Accept-Language", "in": "header", "description": "The alert language as a 5-letter language code \r\n\r\nValid values: en-GB, ja-JP, zh-CN, ko-KR, fr-FR, de-DE, it-IT, es-ES", "required": true, "type": "string" }, { "name": "startPublish", "in": "query", "description": "Return items published on or after this date \r\n\r\nValid values: ISO 8601 date formatted date (default min date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "endPublish", "in": "query", "description": "Return items published on or before this date \r\n\r\nValid values: ISO 8601 date formatted date (default max date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "countries", "in": "query", "description": "One or more impact countries\r\n\r\nValid Values: 3 letter iso country code e.g GBR\r\n\r\nLimit: 20", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "sort", "in": "query", "description": "Field to sort by\r\n\r\nValid values: any field that exists in output e.g -published will sort via published field in descending order, +published will sort via published field in ascending order", "required": false, "type": "string" }, { "name": "page", "in": "query", "description": "Page number in the results to return\r\n\r\nValid values: any integer\r\n\r\nDefault value: 1", "required": false, "type": "integer", "format": "int32" }, { "name": "pageSize", "in": "query", "description": "Number of results in a page \r\n\r\nValid values: any integer between 1 and 250\r\n\r\nDefault value: 50", "required": false, "type": "integer", "format": "int32" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/Thirdparty_Traveller" }, "examples": { "application/json": { "Alerts": [ { "Assessment": "", "ManagerAdvice": "", "MoreDetail": "", "TravellerAdvice": "", "Summary": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
", "CreatedDate": "2017-07-19T18:24:18.0000000Z", "EventStart": "", "EventEnd": "", "Locations": [ { "GeoName": "Almaty", "CountryIsoList": "KAZ", "CountryNameList": "Kazakhstan" } ], "Id": "11964107-bd01-426f-a33a-3481a947ca35", "Title": "Almaty: Reconfirm flights during temporary closure of airport runway every Thursday until 1 November", "Status": "Live", "Severity": "Notice", "UpdatedDate": "2017-07-19T18:24:18.0000000Z", "TitleLocation": "Kazakhstan", "PublishAction": "Publish Major with email", "IsWorldWide": false, "SeverityAttributes": { "Name": "Notice", "Rank": "1", "Icon": "https://images.internationalsos.com//-/media/dynamic-content/severity-icons/severity1.png", "Color": "#009354" }, "Service": "Security", "Version": 1 } ], "Page": 1, "Showing": 1, "TotalHits": 1, "ResponseTime": 300 } } }, "400": { "description": "An invalid or missing input parameter will result in a bad request", "schema": { "$ref": "#/definitions/BadRequestExample" } } } } }, "/thirdparty/summaries": { "get": { "tags": [ "Version 3 (Third Parties)" ], "summary": "New alerts Api - consumed by clients and partners", "description": "Sample request: \r\n\r\n GET /thirdparty/summaries\r\n\r\nParameter Examples:\r\n\r\n Optional:\r\n {\r\n \"Regions\": 9,10,11\r\n \"Severities\": 1,2\r\n \"Categories\": Terror attack,Explosion\r\n \"Countries\": AFG,GBR\r\n }", "operationId": "Alerts_Find_thirdparty_summaries", "consumes": [], "produces": [ "application/json; version=3", "text/json; version=3", "application/xml; version=3", "text/xml; version=3" ], "parameters": [ { "name": "alertId", "in": "query", "description": "Sitecore id of alert\r\n\r\nValid values: any guid Niraj2\r\n\r\nDefault value: return all", "required": false, "type": "string", "format": "uuid" }, { "name": "globalOnly", "in": "query", "description": "If true, then includes all alerts covering more than one region OR any alerts with a 'worldwide' impact\r\n\r\nValid Values: true, false\r\n \r\nDefault value: false", "required": false, "type": "boolean" }, { "name": "status", "in": "query", "description": "The publish status\r\n\r\nValid values: Live, Archived\r\n\r\nDefault value: Live", "required": false, "type": "string", "enum": [ "Live", "Archived", "All" ] }, { "name": "startActive", "in": "query", "description": "Return items that are active on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: min date", "required": false, "type": "string", "format": "date-time" }, { "name": "endActive", "in": "query", "description": "Return items that are active on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "startEvent", "in": "query", "description": "Return items with event start date on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "endEvent", "in": "query", "description": "Return items with event end date on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "regions", "in": "query", "description": "One or more impact regions\r\n\r\nValid Values: Americas = 9, Asia & Pacific = 10, Aftrica = 11, Europe & CIS = 12, Mid East & N Aftrica = 13", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "services", "in": "query", "description": "Services recipieint has subscribed to. \r\n\r\nValid Values: Medical, Security\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "severities", "in": "query", "description": "Alert severity\r\n\r\nValid values: Notice = 1, Advisory = 2, Special Advisory = 3, Warning = 4, Stand-by = 5, Evacuate: Non-Essential Staff = 6, Evacuate: Full Evacuation = 7\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "categories", "in": "query", "description": "Event categories\r\n\r\nValid values: any valid event category name (refer to taxonomy api) e.g. Terror attack, Explosion\r\n\r\nDefault value: all Test345", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "Accept-Language", "in": "header", "description": "The alert language as a 5-letter language code \r\n\r\nValid values: en-GB, ja-JP, zh-CN, ko-KR, fr-FR, de-DE, it-IT, es-ES", "required": true, "type": "string" }, { "name": "startPublish", "in": "query", "description": "Return items published on or after this date \r\n\r\nValid values: ISO 8601 date formatted date (default min date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "endPublish", "in": "query", "description": "Return items published on or before this date \r\n\r\nValid values: ISO 8601 date formatted date (default max date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "countries", "in": "query", "description": "One or more impact countries\r\n\r\nValid Values: 3 letter iso country code e.g GBR\r\n\r\nLimit: 20", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "sort", "in": "query", "description": "Field to sort by\r\n\r\nValid values: any field that exists in output e.g -published will sort via published field in descending order, +published will sort via published field in ascending order", "required": false, "type": "string" }, { "name": "page", "in": "query", "description": "Page number in the results to return\r\n\r\nValid values: any integer\r\n\r\nDefault value: 1", "required": false, "type": "integer", "format": "int32" }, { "name": "pageSize", "in": "query", "description": "Number of results in a page \r\n\r\nValid values: any integer between 1 and 250\r\n\r\nDefault value: 50", "required": false, "type": "integer", "format": "int32" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/Thirdparty_Summaries" }, "examples": { "application/json": { "Alerts": [ { "Summary": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
", "CreatedDate": "2017-07-19T18:24:18.0000000Z", "EventStart": "", "EventEnd": "", "Locations": [ { "GeoName": "Almaty", "CountryIsoList": "KAZ", "CountryNameList": "Kazakhstan" } ], "Id": "11964107-bd01-426f-a33a-3481a947ca35", "Title": "Almaty: Reconfirm flights during temporary closure of airport runway every Thursday until 1 November", "Status": "Live", "Severity": "Notice", "UpdatedDate": "2017-07-19T18:24:18.0000000Z", "TitleLocation": "Kazakhstan", "PublishAction": "Publish Major with email", "IsWorldWide": false, "SeverityAttributes": { "Name": "Notice", "Rank": "1", "Icon": "https://images.internationalsos.com//-/media/dynamic-content/severity-icons/severity1.png", "Color": "#009354" }, "Service": "Security", "Version": 1 } ], "Page": 1, "Showing": 1, "TotalHits": 1, "ResponseTime": 300 } } }, "400": { "description": "An invalid or missing input parameter will result in a bad request", "schema": { "$ref": "#/definitions/BadRequestExample" } } } } }, "/thirdparty/headlines": { "get": { "tags": [ "Version 3 (Third Parties)" ], "summary": "New alerts Api - consumed by clients and partners", "description": "Sample request: \r\n\r\n GET /thirdparty/headlines\r\n\r\nParameter Examples:\r\n\r\n Optional:\r\n {\r\n \"Regions\": 9,10,11\r\n \"Severities\": 1,2\r\n \"Categories\": Terror attack,Explosion\r\n \"Countries\": AFG,GBR\r\n }", "operationId": "Alerts_Find_thirdparty_headlines", "consumes": [], "produces": [ "application/json; version=3", "text/json; version=3", "application/xml; version=3", "text/xml; version=3" ], "parameters": [ { "name": "alertId", "in": "query", "description": "Sitecore id of alert\r\n\r\nValid values: any guid Niraj2\r\n\r\nDefault value: return all", "required": false, "type": "string", "format": "uuid" }, { "name": "globalOnly", "in": "query", "description": "If true, then includes all alerts covering more than one region OR any alerts with a 'worldwide' impact\r\n\r\nValid Values: true, false\r\n \r\nDefault value: false", "required": false, "type": "boolean" }, { "name": "status", "in": "query", "description": "The publish status\r\n\r\nValid values: Live, Archived\r\n\r\nDefault value: Live", "required": false, "type": "string", "enum": [ "Live", "Archived", "All" ] }, { "name": "startActive", "in": "query", "description": "Return items that are active on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: min date", "required": false, "type": "string", "format": "date-time" }, { "name": "endActive", "in": "query", "description": "Return items that are active on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "startEvent", "in": "query", "description": "Return items with event start date on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "endEvent", "in": "query", "description": "Return items with event end date on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "required": false, "type": "string", "format": "date-time" }, { "name": "regions", "in": "query", "description": "One or more impact regions\r\n\r\nValid Values: Americas = 9, Asia & Pacific = 10, Aftrica = 11, Europe & CIS = 12, Mid East & N Aftrica = 13", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "services", "in": "query", "description": "Services recipieint has subscribed to. \r\n\r\nValid Values: Medical, Security\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "severities", "in": "query", "description": "Alert severity\r\n\r\nValid values: Notice = 1, Advisory = 2, Special Advisory = 3, Warning = 4, Stand-by = 5, Evacuate: Non-Essential Staff = 6, Evacuate: Full Evacuation = 7\r\n\r\nDefault value: all", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "categories", "in": "query", "description": "Event categories\r\n\r\nValid values: any valid event category name (refer to taxonomy api) e.g. Terror attack, Explosion\r\n\r\nDefault value: all Test345", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "Accept-Language", "in": "header", "description": "The alert language as a 5-letter language code \r\n\r\nValid values: en-GB, ja-JP, zh-CN, ko-KR, fr-FR, de-DE, it-IT, es-ES", "required": true, "type": "string" }, { "name": "startPublish", "in": "query", "description": "Return items published on or after this date \r\n\r\nValid values: ISO 8601 date formatted date (default min date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "endPublish", "in": "query", "description": "Return items published on or before this date \r\n\r\nValid values: ISO 8601 date formatted date (default max date) e.g. 2017-04-05T14:30:00Z", "required": false, "type": "string", "format": "date-time" }, { "name": "countries", "in": "query", "description": "One or more impact countries\r\n\r\nValid Values: 3 letter iso country code e.g GBR\r\n\r\nLimit: 20", "required": false, "type": "array", "items": { "type": "string" }, "collectionFormat": "multi" }, { "name": "sort", "in": "query", "description": "Field to sort by\r\n\r\nValid values: any field that exists in output e.g -published will sort via published field in descending order, +published will sort via published field in ascending order", "required": false, "type": "string" }, { "name": "page", "in": "query", "description": "Page number in the results to return\r\n\r\nValid values: any integer\r\n\r\nDefault value: 1", "required": false, "type": "integer", "format": "int32" }, { "name": "pageSize", "in": "query", "description": "Number of results in a page \r\n\r\nValid values: any integer between 1 and 250\r\n\r\nDefault value: 50", "required": false, "type": "integer", "format": "int32" } ], "responses": { "200": { "description": "OK", "schema": { "$ref": "#/definitions/Thirdparty_Headlines" }, "examples": { "application/json": { "Alerts": [ { "Locations": [ { "GeoName": "Almaty", "CountryIsoList": "KAZ", "CountryNameList": "Kazakhstan" } ], "Id": "11964107-bd01-426f-a33a-3481a947ca35", "Title": "Almaty: Reconfirm flights during temporary closure of airport runway every Thursday until 1 November", "Status": "Live", "Severity": "Notice", "UpdatedDate": "2017-07-19T18:24:18.0000000Z", "TitleLocation": "Kazakhstan", "PublishAction": "Publish Major with email", "IsWorldWide": false, "SeverityAttributes": { "Name": "Notice", "Rank": "1", "Icon": "https://images.internationalsos.com//-/media/dynamic-content/severity-icons/severity1.png", "Color": "#009354" }, "Service": "Security", "Version": 1 } ], "Page": 1, "Showing": 1, "TotalHits": 1, "ResponseTime": 300 } } }, "400": { "description": "An invalid or missing input parameter will result in a bad request", "schema": { "$ref": "#/definitions/BadRequestExample" } } } } } }, "definitions": { "exupdate": { "type": "object", "properties": { "category": { "type": "string" }, "href": { "type": "string", "format": "uri" }, "modified": { "type": "string", "format": "date-time" }, "summary": { "type": "string" }, "title": { "type": "string" } }, "required": [ "href", "title", "summary", "modified", "category" ] }, "headline": { "type": "object", "properties": { "modified": { "type": "string", "format": "date-time" }, "regions": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "lang": { "type": "string" }, "name": { "type": "string" }, "update": { "$ref": "#/definitions/exupdate" } }, "required": [ "id", "lang", "name", "update" ] } }, "countries": { "type": "array", "items": { "type": "object", "properties": { "country": { "type": "string" }, "lang": { "type": "string" }, "name": { "type": "string" }, "update": { "$ref": "#/definitions/exupdate" } }, "required": [ "country", "lang", "name", "update" ] } } }, "required": [ "modified", "regions", "countries" ] }, "article": { "type": "object", "properties": { "modified": { "type": "string", "format": "date-time" }, "globals": { "type": "array", "items": { "type": "object", "properties": { "lang": { "type": "string" }, "updates": { "type": "array", "items": { "$ref": "#/definitions/update" } } }, "required": [ "lang", "updates" ] } }, "regions": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "lang": { "type": "string" }, "name": { "type": "string" }, "updates": { "type": "array", "items": { "$ref": "#/definitions/update" } } }, "required": [ "id", "lang", "name", "updates" ] } }, "countries": { "type": "array", "items": { "type": "object", "properties": { "country": { "type": "string" }, "lang": { "type": "string" }, "name": { "type": "string" }, "updates": { "type": "array", "items": { "$ref": "#/definitions/update" } } }, "required": [ "country", "lang", "name", "updates" ] } } }, "required": [ "modified", "globals", "regions", "countries" ] }, "summary": { "type": "object", "properties": { "modified": { "type": "string", "format": "date-time" }, "globals": { "type": "array", "items": { "type": "object", "properties": { "lang": { "type": "string" }, "updates": { "type": "array", "items": { "$ref": "#/definitions/summaryupdate" } } }, "required": [ "lang", "updates" ] } }, "regions": { "type": "array", "items": { "type": "object", "properties": { "id": { "type": "integer" }, "lang": { "type": "string" }, "name": { "type": "string" }, "updates": { "type": "array", "items": { "$ref": "#/definitions/summaryupdate" } } }, "required": [ "id", "lang", "name", "updates" ] } }, "countries": { "type": "array", "items": { "type": "object", "properties": { "country": { "type": "string" }, "lang": { "type": "string" }, "name": { "type": "string" }, "updates": { "type": "array", "items": { "$ref": "#/definitions/summaryupdate" } } }, "required": [ "country", "lang", "name", "updates" ] } } }, "required": [ "modified", "globals", "regions", "countries" ] }, "update": { "type": "object", "properties": { "href": { "type": "string", "format": "uri" }, "title": { "type": "string" }, "summary": { "type": "string" }, "created": { "type": "string", "format": "date-time" }, "modified": { "type": "string", "format": "date-time" }, "categories": { "type": "array", "items": { "type": "object", "properties": { "primary": { "type": "string" }, "sub": { "type": "string" } }, "required": [ "primary", "sub" ] } }, "long": { "type": "number" }, "lat": { "type": "number" }, "id": { "type": "integer" }, "version": { "type": "number" }, "specialadvisory": { "type": "boolean" }, "body": { "type": "string" } }, "required": [ "href", "title", "summary", "created", "modified", "categories", "long", "lat", "id", "version", "specialadvisory", "body" ] }, "summaryupdate": { "type": "object", "properties": { "href": { "type": "string", "format": "uri" }, "title": { "type": "string" }, "summary": { "type": "string" }, "created": { "type": "string", "format": "date-time" }, "modified": { "type": "string", "format": "date-time" }, "categories": { "type": "array", "items": { "type": "object", "properties": { "primary": { "type": "string" }, "sub": { "type": "string" } }, "required": [ "primary", "sub" ] } }, "long": { "type": "number" }, "lat": { "type": "number" }, "id": { "type": "integer" }, "version": { "type": "number" }, "specialadvisory": { "type": "boolean" } }, "required": [ "href", "title", "summary", "created", "modified", "categories", "long", "lat", "id", "version", "specialadvisory" ] }, "Summaries": { "type": "object", "properties": { "ActiveFrom": { "type": "string" }, "ActiveTo": { "type": "string" }, "CreatedDate": { "type": "string" }, "EventEnd": { "type": "string" }, "EventStart": { "type": "string" }, "Id": { "type": "string" }, "IsWorldWide": { "type": "boolean" }, "Locations": { "type": "object", "properties": { "features": { "items": { "properties": { "geometry": { "properties": { "coordinates": { "items": { "type": "number" }, "type": "array" }, "type": { "type": "string" } }, "type": "object" }, "properties": { "properties": { "CountryIsoList": { "type": "string" }, "CountryNameList": { "type": "string" }, "IsPrimary": { "type": "boolean" }, "Name": { "type": "string" } }, "type": "object" }, "type": { "type": "string" } }, "type": "object" }, "type": "array" }, "type": { "type": "string" } } }, "PublishAction": { "type": "string" }, "Severity": { "type": "string" }, "Status": { "type": "string" }, "Summary": { "type": "string" }, "Title": { "type": "string" }, "TitleLocation": { "type": "string" }, "UpdatedDate": { "type": "string" } } }, "AlertsRequest": { "required": [ "Language" ], "type": "object", "properties": { "AlertId": { "format": "uuid", "description": "Sitecore id of alert\r\n\r\nValid values: any guid Niraj2\r\n\r\nDefault value: return all", "type": "string", "example": "00000000-0000-0000-0000-000000000000" }, "GlobalOnly": { "description": "If true, then includes all alerts covering more than one region OR any alerts with a 'worldwide' impact\r\n\r\nValid Values: true, false\r\n \r\nDefault value: false", "type": "boolean" }, "Status": { "description": "The publish status\r\n\r\nValid values: Live, Archived\r\n\r\nDefault value: Live", "enum": [ "Live", "Archived", "All" ], "type": "string" }, "StartActive": { "format": "date-time", "description": "Return items that are active on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: min date", "type": "string" }, "EndActive": { "format": "date-time", "description": "Return items that are active on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "type": "string" }, "StartEvent": { "format": "date-time", "description": "Return items with event start date on or after this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "type": "string" }, "EndEvent": { "format": "date-time", "description": "Return items with event end date on or before this date \r\n\r\nValid values: ISO 8601 date formatted date e.g. 2017-04-05T14:30:00Z\r\n\r\nDefault value: max date", "type": "string" }, "Regions": { "description": "One or more impact regions\r\n\r\nValid Values: Americas = 9, Asia & Pacific = 10, Aftrica = 11, Europe & CIS = 12, Mid East & N Aftrica = 13", "type": "array", "items": { "type": "string" } }, "Services": { "description": "Services recipieint has subscribed to. \r\n\r\nValid Values: Medical, Security\r\n\r\nDefault value: all", "type": "array", "items": { "type": "string" } }, "Severities": { "description": "Alert severity\r\n\r\nValid values: Notice = 1, Advisory = 2, Special Advisory = 3, Warning = 4, Stand-by = 5, Evacuate: Non-Essential Staff = 6, Evacuate: Full Evacuation = 7\r\n\r\nDefault value: all", "type": "array", "items": { "type": "string" } }, "Categories": { "description": "Event categories\r\n\r\nValid values: any valid event category name (refer to taxonomy api) e.g. Terror attack, Explosion\r\n\r\nDefault value: all Test345", "type": "array", "items": { "type": "string" } }, "Language": { "description": "The alert language as a 5-letter language code \r\n\r\nValid values: en-GB, ja-JP, zh-CN, ko-KR, fr-FR, de-DE, it-IT, es-ES", "type": "string" }, "StartPublish": { "format": "date-time", "description": "Return items published on or after this date \r\n\r\nValid values: ISO 8601 date formatted date (default min date) e.g. 2017-04-05T14:30:00Z", "type": "string" }, "EndPublish": { "format": "date-time", "description": "Return items published on or before this date \r\n\r\nValid values: ISO 8601 date formatted date (default max date) e.g. 2017-04-05T14:30:00Z", "type": "string" }, "Countries": { "description": "One or more impact countries\r\n\r\nValid Values: 3 letter iso country code e.g GBR\r\n\r\nLimit: 20", "type": "array", "items": { "type": "string" } }, "Sort": { "description": "Field to sort by\r\n\r\nValid values: any field that exists in output e.g -published will sort via published field in descending order, +published will sort via published field in ascending order", "type": "string" }, "Page": { "format": "int32", "description": "Page number in the results to return\r\n\r\nValid values: any integer\r\n\r\nDefault value: 1", "type": "integer" }, "PageSize": { "format": "int32", "description": "Number of results in a page \r\n\r\nValid values: any integer between 1 and 250\r\n\r\nDefault value: 50", "type": "integer" } } }, "Client_Full": { "type": "object", "properties": { "Assessment": { "description": "An HTML field containing a manager-focused assessment. This field is optional and may only be included in some items.", "type": "string", "example": "" }, "ManagerAdvice": { "description": "An optional bulleted list of advice for managers.", "type": "string", "example": "" }, "MoreDetail": { "description": "Additional detail associated with the report. This may or may not be populated, depending on the nature of the report. This may include bulleted lists of additional information and hyperlinks to locations or resources.", "type": "string", "example": "" }, "TravellerAdvice": { "description": "A bulleted list of advice for travellers or assignees who are at or travelling to the destination.", "type": "string", "example": "" }, "Summary": { "description": "Typically a single paragraph less than 100 words long, which includes key facts of the event. May include hyperlinks to other resources.", "type": "string", "example": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
" }, "Graphic": { "description": "The URL of a map image associated with the alert (optional).", "type": "string", "example": "/-/media/dynamic-content/alert-maps/2021/february/guineaebola24feb2021.png" }, "MediaLink": { "description": "Link to media asset for the item (such as PDF or video)", "type": "string" }, "MediaLinkFullyQualified": { "description": "Fully qualified link to media asset for the item (such as PDF or video)", "type": "string" }, "Categories": { "description": "A list of categories associated with the item. At least one and typically up to five categories will be included.\r\nexample: Civil unrest\r\nThe name of each category that is associated with the item.", "type": "array", "items": { "type": "string" }, "example": [ "Airport disruption" ] }, "RelatedItems": { "description": "An array of Globally Unique Identifiers of any items that are related to the alert", "type": "array", "items": { "format": "uuid", "type": "string", "example": "00000000-0000-0000-0000-000000000000" } }, "Taxonomy": { "type": "array", "items": { "$ref": "#/definitions/Models.Taxonomy.TaxonomyItem" } }, "ActiveTo": { "description": "Date after which the alert is inactive", "type": "string", "example": "2021-06-02T00:00:00.0000000Z" }, "ActiveFrom": { "description": "Date from which the alert is active", "type": "string", "example": "2021-05-24T00:00:00.0000000Z" }, "CreatedDate": { "description": "Date/time the item was originally published, In Universal Coordinated Time (UTC)", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "EventStart": { "description": "Optional field specifiying the date of an event mentioned in the item.", "type": "string", "example": "" }, "EventEnd": { "description": "Optional field specifying the end date of an event mentioned in the item. Will not be populated unless the EventStart is populated.", "type": "string", "example": "" }, "Locations": { "properties": { "features": { "items": { "properties": { "geometry": { "properties": { "coordinates": { "items": { "type": "number", "description": "A coordinate value.", "example": "-106.08889" }, "type": "array", "description": "Coordinates are in x, y order (longitude, latitude).", "example": "[-106.08889,28.63528]" }, "type": { "type": "string", "description": "GeoJSON Property indicating the type of coordinates information. Will always be set to point.", "example": "Point" } }, "type": "object" }, "properties": { "properties": { "CountryIsoList": { "type": "string", "example": "IRN,IRQ", "description": "Comma delimited list of three-letter ISO country codes, which correspond to the country name at the same position within the CountryNameList property." }, "CountryNameList": { "type": "string", "example": "Iran,Iraq", "description": "Comma delimited list of country names, which correspond to the country ISO at the same position within the CountryIsoList property." }, "ImpactRadius": { "type": "integer", "description": "Impact radius around the point specified in the geometry component of the GeoJSON object. The typical minimum radius for items with a Local or Cross-border ImpactType will be 50km, to ensure at least one airport location is captured witinin the radius to facilitate itinerary-based alerting. If the ImpactType is set to Country, the radius will be 0." }, "ImpactType": { "type": "string", "description": "If the impact type is Local, the impact area includes locations that are within the radius and within the borders of specified country. If the impact type is Country, the entire area within the country's borders will be impacted. If the impact type is Cross-border, all locations within the radius (potentially in multiple countries) will be included.", "example": "Country" }, "IsPrimary": { "type": "boolean", "description": "Set to True for the primary location of the alert." }, "Name": { "type": "string", "description": "Editor-defined name of geographical location.", "example": "West London" } }, "type": "object" }, "type": { "type": "string", "example": "Feature" } }, "type": "object" }, "type": "array" }, "type": { "type": "string", "example": "FeatureCollection" } }, "type": "object", "description": "A GeoJSON collection that includes the location information associated with the item. Each item may have one or more location objects associated with it." }, "Id": { "format": "uuid", "description": "Globally Unique Identifier for the item.", "type": "string", "example": "8922453e-af02-4621-8374-e42b0d32d609" }, "Title": { "description": "example: Expect delays at international airports during ongoing strike by immigration officers\r\nTypically no longer than 100 characters and may include specific sub-country location information, \r\nsuch as ‘urban centres’ or a city name.", "type": "string", "example": "Urban centres: Plan journeys bypassing civil society protests in coming days" }, "Status": { "description": "Indicates whether the content / advice in the item is valid at the present time. \r\nArchived items represent a historic record of reporting. \r\nA ‘live’ item could have similar previous versions in the archive.", "type": "string", "example": "Live" }, "Severity": { "description": " The severity of an alert, as assessed by the analyst. Values include 1 - Notice, 2 - Advisory, \r\n3 - Special Advisory, 4 - Warning, 5 - Stand-By, 6 - Evacuate: Non Essential Staff, 7 - Evacuate: Full Evacuation", "type": "string", "example": "Special Advisory" }, "UpdatedDate": { "description": "Date/time the item was last updated, In Universal Coordinated Time (UTC). \r\nNote that minor changes to the item (such as corrections to typos) may not cause this value to be modified.", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "TitleLocation": { "description": "A title prefix that gives the Intl.SOS country name or region name associated with the item. \r\nThis can be combined with the title field to give a standard representation of a headline for any given item.", "type": "string", "example": "Iran, Iraq" }, "PublishAction": { "description": "Indicates the last publish action performed on an item. \r\nIf the publish action was ‘Publish Major with email’ then the item was pushed out via email to clients. \r\nIf the action was ‘Publish Major’ then material changes to the item were made and the UpdatedDate was updated, \r\nbut a notification was not triggered. If the action was 'Publish minor’, an immaterial change was made to the item (such as to correct a typo).", "type": "string", "example": "Publish Major" }, "IsWorldWide": { "description": "If the item includes more than one country in more than one region, or an item has a ‘worldwide’ impact type, \r\nthis value will be set to True.", "type": "boolean", "example": false }, "SeverityAttributes": { "$ref": "#/definitions/Models.Alerts.Severity" }, "Service": { "description": "Indicates the service of the item.", "type": "string", "example": "Security" }, "Version": { "format": "int32", "description": "Indicates the version of the item.", "type": "integer", "example": 3 } } }, "Client_Traveller": { "type": "object", "properties": { "MoreDetail": { "description": "Additional detail associated with the report. This may or may not be populated, depending on the nature of the report. This may include bulleted lists of additional information and hyperlinks to locations or resources.", "type": "string", "example": "" }, "TravellerAdvice": { "description": "A bulleted list of advice for travellers or assignees who are at or travelling to the destination.", "type": "string", "example": "" }, "Summary": { "description": "Typically a single paragraph less than 100 words long, which includes key facts of the event. May include hyperlinks to other resources.", "type": "string", "example": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
" }, "Graphic": { "description": "The URL of a map image associated with the alert (optional).", "type": "string", "example": "/-/media/dynamic-content/alert-maps/2021/february/guineaebola24feb2021.png" }, "MediaLink": { "description": "Link to media asset for the item (such as PDF or video)", "type": "string" }, "MediaLinkFullyQualified": { "description": "Fully qualified link to media asset for the item (such as PDF or video)", "type": "string" }, "Categories": { "description": "A list of categories associated with the item. At least one and typically up to five categories will be included.\r\nexample: Civil unrest\r\nThe name of each category that is associated with the item.", "type": "array", "items": { "type": "string" }, "example": [ "Airport disruption" ] }, "RelatedItems": { "description": "An array of Globally Unique Identifiers of any items that are related to the alert", "type": "array", "items": { "format": "uuid", "type": "string", "example": "00000000-0000-0000-0000-000000000000" } }, "Taxonomy": { "type": "array", "items": { "$ref": "#/definitions/Models.Taxonomy.TaxonomyItem" } }, "ActiveTo": { "description": "Date after which the alert is inactive", "type": "string", "example": "2021-06-02T00:00:00.0000000Z" }, "ActiveFrom": { "description": "Date from which the alert is active", "type": "string", "example": "2021-05-24T00:00:00.0000000Z" }, "CreatedDate": { "description": "Date/time the item was originally published, In Universal Coordinated Time (UTC)", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "EventStart": { "description": "Optional field specifiying the date of an event mentioned in the item.", "type": "string", "example": "" }, "EventEnd": { "description": "Optional field specifying the end date of an event mentioned in the item. Will not be populated unless the EventStart is populated.", "type": "string", "example": "" }, "Locations": { "properties": { "features": { "items": { "properties": { "geometry": { "properties": { "coordinates": { "items": { "type": "number", "description": "A coordinate value.", "example": "-106.08889" }, "type": "array", "description": "Coordinates are in x, y order (longitude, latitude).", "example": "[-106.08889,28.63528]" }, "type": { "type": "string", "description": "GeoJSON Property indicating the type of coordinates information. Will always be set to point.", "example": "Point" } }, "type": "object" }, "properties": { "properties": { "CountryIsoList": { "type": "string", "example": "IRN,IRQ", "description": "Comma delimited list of three-letter ISO country codes, which correspond to the country name at the same position within the CountryNameList property." }, "CountryNameList": { "type": "string", "example": "Iran,Iraq", "description": "Comma delimited list of country names, which correspond to the country ISO at the same position within the CountryIsoList property." }, "ImpactRadius": { "type": "integer", "description": "Impact radius around the point specified in the geometry component of the GeoJSON object. The typical minimum radius for items with a Local or Cross-border ImpactType will be 50km, to ensure at least one airport location is captured witinin the radius to facilitate itinerary-based alerting. If the ImpactType is set to Country, the radius will be 0." }, "ImpactType": { "type": "string", "description": "If the impact type is Local, the impact area includes locations that are within the radius and within the borders of specified country. If the impact type is Country, the entire area within the country's borders will be impacted. If the impact type is Cross-border, all locations within the radius (potentially in multiple countries) will be included.", "example": "Country" }, "IsPrimary": { "type": "boolean", "description": "Set to True for the primary location of the alert." }, "Name": { "type": "string", "description": "Editor-defined name of geographical location.", "example": "West London" } }, "type": "object" }, "type": { "type": "string", "example": "Feature" } }, "type": "object" }, "type": "array" }, "type": { "type": "string", "example": "FeatureCollection" } }, "type": "object", "description": "A GeoJSON collection that includes the location information associated with the item. Each item may have one or more location objects associated with it." }, "Id": { "format": "uuid", "description": "Globally Unique Identifier for the item.", "type": "string", "example": "8922453e-af02-4621-8374-e42b0d32d609" }, "Title": { "description": "example: Expect delays at international airports during ongoing strike by immigration officers\r\nTypically no longer than 100 characters and may include specific sub-country location information, \r\nsuch as ‘urban centres’ or a city name.", "type": "string", "example": "Urban centres: Plan journeys bypassing civil society protests in coming days" }, "Status": { "description": "Indicates whether the content / advice in the item is valid at the present time. \r\nArchived items represent a historic record of reporting. \r\nA ‘live’ item could have similar previous versions in the archive.", "type": "string", "example": "Live" }, "Severity": { "description": " The severity of an alert, as assessed by the analyst. Values include 1 - Notice, 2 - Advisory, \r\n3 - Special Advisory, 4 - Warning, 5 - Stand-By, 6 - Evacuate: Non Essential Staff, 7 - Evacuate: Full Evacuation", "type": "string", "example": "Special Advisory" }, "UpdatedDate": { "description": "Date/time the item was last updated, In Universal Coordinated Time (UTC). \r\nNote that minor changes to the item (such as corrections to typos) may not cause this value to be modified.", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "TitleLocation": { "description": "A title prefix that gives the Intl.SOS country name or region name associated with the item. \r\nThis can be combined with the title field to give a standard representation of a headline for any given item.", "type": "string", "example": "Iran, Iraq" }, "PublishAction": { "description": "Indicates the last publish action performed on an item. \r\nIf the publish action was ‘Publish Major with email’ then the item was pushed out via email to clients. \r\nIf the action was ‘Publish Major’ then material changes to the item were made and the UpdatedDate was updated, \r\nbut a notification was not triggered. If the action was 'Publish minor’, an immaterial change was made to the item (such as to correct a typo).", "type": "string", "example": "Publish Major" }, "IsWorldWide": { "description": "If the item includes more than one country in more than one region, or an item has a ‘worldwide’ impact type, \r\nthis value will be set to True.", "type": "boolean", "example": false }, "SeverityAttributes": { "$ref": "#/definitions/Models.Alerts.Severity" }, "Service": { "description": "Indicates the service of the item.", "type": "string", "example": "Security" }, "Version": { "format": "int32", "description": "Indicates the version of the item.", "type": "integer", "example": 3 } } }, "Client_Summaries": { "type": "object", "properties": { "Summary": { "description": "Typically a single paragraph less than 100 words long, which includes key facts of the event. May include hyperlinks to other resources.", "type": "string", "example": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
" }, "Graphic": { "description": "The URL of a map image associated with the alert (optional).", "type": "string", "example": "/-/media/dynamic-content/alert-maps/2021/february/guineaebola24feb2021.png" }, "MediaLink": { "description": "Link to media asset for the item (such as PDF or video)", "type": "string" }, "MediaLinkFullyQualified": { "description": "Fully qualified link to media asset for the item (such as PDF or video)", "type": "string" }, "Categories": { "description": "A list of categories associated with the item. At least one and typically up to five categories will be included.\r\nexample: Civil unrest\r\nThe name of each category that is associated with the item.", "type": "array", "items": { "type": "string" }, "example": [ "Airport disruption" ] }, "RelatedItems": { "description": "An array of Globally Unique Identifiers of any items that are related to the alert", "type": "array", "items": { "format": "uuid", "type": "string", "example": "00000000-0000-0000-0000-000000000000" } }, "Taxonomy": { "type": "array", "items": { "$ref": "#/definitions/Models.Taxonomy.TaxonomyItem" } }, "ActiveTo": { "description": "Date after which the alert is inactive", "type": "string", "example": "2021-06-02T00:00:00.0000000Z" }, "ActiveFrom": { "description": "Date from which the alert is active", "type": "string", "example": "2021-05-24T00:00:00.0000000Z" }, "CreatedDate": { "description": "Date/time the item was originally published, In Universal Coordinated Time (UTC)", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "EventStart": { "description": "Optional field specifiying the date of an event mentioned in the item.", "type": "string", "example": "" }, "EventEnd": { "description": "Optional field specifying the end date of an event mentioned in the item. Will not be populated unless the EventStart is populated.", "type": "string", "example": "" }, "Locations": { "properties": { "features": { "items": { "properties": { "geometry": { "properties": { "coordinates": { "items": { "type": "number", "description": "A coordinate value.", "example": "-106.08889" }, "type": "array", "description": "Coordinates are in x, y order (longitude, latitude).", "example": "[-106.08889,28.63528]" }, "type": { "type": "string", "description": "GeoJSON Property indicating the type of coordinates information. Will always be set to point.", "example": "Point" } }, "type": "object" }, "properties": { "properties": { "CountryIsoList": { "type": "string", "example": "IRN,IRQ", "description": "Comma delimited list of three-letter ISO country codes, which correspond to the country name at the same position within the CountryNameList property." }, "CountryNameList": { "type": "string", "example": "Iran,Iraq", "description": "Comma delimited list of country names, which correspond to the country ISO at the same position within the CountryIsoList property." }, "ImpactRadius": { "type": "integer", "description": "Impact radius around the point specified in the geometry component of the GeoJSON object. The typical minimum radius for items with a Local or Cross-border ImpactType will be 50km, to ensure at least one airport location is captured witinin the radius to facilitate itinerary-based alerting. If the ImpactType is set to Country, the radius will be 0." }, "ImpactType": { "type": "string", "description": "If the impact type is Local, the impact area includes locations that are within the radius and within the borders of specified country. If the impact type is Country, the entire area within the country's borders will be impacted. If the impact type is Cross-border, all locations within the radius (potentially in multiple countries) will be included.", "example": "Country" }, "IsPrimary": { "type": "boolean", "description": "Set to True for the primary location of the alert." }, "Name": { "type": "string", "description": "Editor-defined name of geographical location.", "example": "West London" } }, "type": "object" }, "type": { "type": "string", "example": "Feature" } }, "type": "object" }, "type": "array" }, "type": { "type": "string", "example": "FeatureCollection" } }, "type": "object", "description": "A GeoJSON collection that includes the location information associated with the item. Each item may have one or more location objects associated with it." }, "Id": { "format": "uuid", "description": "Globally Unique Identifier for the item.", "type": "string", "example": "8922453e-af02-4621-8374-e42b0d32d609" }, "Title": { "description": "example: Expect delays at international airports during ongoing strike by immigration officers\r\nTypically no longer than 100 characters and may include specific sub-country location information, \r\nsuch as ‘urban centres’ or a city name.", "type": "string", "example": "Urban centres: Plan journeys bypassing civil society protests in coming days" }, "Status": { "description": "Indicates whether the content / advice in the item is valid at the present time. \r\nArchived items represent a historic record of reporting. \r\nA ‘live’ item could have similar previous versions in the archive.", "type": "string", "example": "Live" }, "Severity": { "description": " The severity of an alert, as assessed by the analyst. Values include 1 - Notice, 2 - Advisory, \r\n3 - Special Advisory, 4 - Warning, 5 - Stand-By, 6 - Evacuate: Non Essential Staff, 7 - Evacuate: Full Evacuation", "type": "string", "example": "Special Advisory" }, "UpdatedDate": { "description": "Date/time the item was last updated, In Universal Coordinated Time (UTC). \r\nNote that minor changes to the item (such as corrections to typos) may not cause this value to be modified.", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "TitleLocation": { "description": "A title prefix that gives the Intl.SOS country name or region name associated with the item. \r\nThis can be combined with the title field to give a standard representation of a headline for any given item.", "type": "string", "example": "Iran, Iraq" }, "PublishAction": { "description": "Indicates the last publish action performed on an item. \r\nIf the publish action was ‘Publish Major with email’ then the item was pushed out via email to clients. \r\nIf the action was ‘Publish Major’ then material changes to the item were made and the UpdatedDate was updated, \r\nbut a notification was not triggered. If the action was 'Publish minor’, an immaterial change was made to the item (such as to correct a typo).", "type": "string", "example": "Publish Major" }, "IsWorldWide": { "description": "If the item includes more than one country in more than one region, or an item has a ‘worldwide’ impact type, \r\nthis value will be set to True.", "type": "boolean", "example": false }, "SeverityAttributes": { "$ref": "#/definitions/Models.Alerts.Severity" }, "Service": { "description": "Indicates the service of the item.", "type": "string", "example": "Security" }, "Version": { "format": "int32", "description": "Indicates the version of the item.", "type": "integer", "example": 3 } } }, "Client_Headlines": { "type": "object", "properties": { "MediaLink": { "description": "Link to media asset for the item (such as PDF or video)", "type": "string" }, "MediaLinkFullyQualified": { "description": "Fully qualified link to media asset for the item (such as PDF or video)", "type": "string" }, "Categories": { "description": "A list of categories associated with the item. At least one and typically up to five categories will be included.\r\nexample: Civil unrest\r\nThe name of each category that is associated with the item.", "type": "array", "items": { "type": "string" }, "example": [ "Airport disruption" ] }, "RelatedItems": { "description": "An array of Globally Unique Identifiers of any items that are related to the alert", "type": "array", "items": { "format": "uuid", "type": "string", "example": "00000000-0000-0000-0000-000000000000" } }, "Taxonomy": { "type": "array", "items": { "$ref": "#/definitions/Models.Taxonomy.TaxonomyItem" } }, "ActiveTo": { "description": "Date after which the alert is inactive", "type": "string", "example": "2021-06-02T00:00:00.0000000Z" }, "ActiveFrom": { "description": "Date from which the alert is active", "type": "string", "example": "2021-05-24T00:00:00.0000000Z" }, "CreatedDate": { "description": "Date/time the item was originally published, In Universal Coordinated Time (UTC)", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "EventStart": { "description": "Optional field specifiying the date of an event mentioned in the item.", "type": "string", "example": "" }, "EventEnd": { "description": "Optional field specifying the end date of an event mentioned in the item. Will not be populated unless the EventStart is populated.", "type": "string", "example": "" }, "Locations": { "properties": { "features": { "items": { "properties": { "geometry": { "properties": { "coordinates": { "items": { "type": "number", "description": "A coordinate value.", "example": "-106.08889" }, "type": "array", "description": "Coordinates are in x, y order (longitude, latitude).", "example": "[-106.08889,28.63528]" }, "type": { "type": "string", "description": "GeoJSON Property indicating the type of coordinates information. Will always be set to point.", "example": "Point" } }, "type": "object" }, "properties": { "properties": { "CountryIsoList": { "type": "string", "example": "IRN,IRQ", "description": "Comma delimited list of three-letter ISO country codes, which correspond to the country name at the same position within the CountryNameList property." }, "CountryNameList": { "type": "string", "example": "Iran,Iraq", "description": "Comma delimited list of country names, which correspond to the country ISO at the same position within the CountryIsoList property." }, "ImpactRadius": { "type": "integer", "description": "Impact radius around the point specified in the geometry component of the GeoJSON object. The typical minimum radius for items with a Local or Cross-border ImpactType will be 50km, to ensure at least one airport location is captured witinin the radius to facilitate itinerary-based alerting. If the ImpactType is set to Country, the radius will be 0." }, "ImpactType": { "type": "string", "description": "If the impact type is Local, the impact area includes locations that are within the radius and within the borders of specified country. If the impact type is Country, the entire area within the country's borders will be impacted. If the impact type is Cross-border, all locations within the radius (potentially in multiple countries) will be included.", "example": "Country" }, "IsPrimary": { "type": "boolean", "description": "Set to True for the primary location of the alert." }, "Name": { "type": "string", "description": "Editor-defined name of geographical location.", "example": "West London" } }, "type": "object" }, "type": { "type": "string", "example": "Feature" } }, "type": "object" }, "type": "array" }, "type": { "type": "string", "example": "FeatureCollection" } }, "type": "object", "description": "A GeoJSON collection that includes the location information associated with the item. Each item may have one or more location objects associated with it." }, "Id": { "format": "uuid", "description": "Globally Unique Identifier for the item.", "type": "string", "example": "8922453e-af02-4621-8374-e42b0d32d609" }, "Title": { "description": "example: Expect delays at international airports during ongoing strike by immigration officers\r\nTypically no longer than 100 characters and may include specific sub-country location information, \r\nsuch as ‘urban centres’ or a city name.", "type": "string", "example": "Urban centres: Plan journeys bypassing civil society protests in coming days" }, "Status": { "description": "Indicates whether the content / advice in the item is valid at the present time. \r\nArchived items represent a historic record of reporting. \r\nA ‘live’ item could have similar previous versions in the archive.", "type": "string", "example": "Live" }, "Severity": { "description": " The severity of an alert, as assessed by the analyst. Values include 1 - Notice, 2 - Advisory, \r\n3 - Special Advisory, 4 - Warning, 5 - Stand-By, 6 - Evacuate: Non Essential Staff, 7 - Evacuate: Full Evacuation", "type": "string", "example": "Special Advisory" }, "UpdatedDate": { "description": "Date/time the item was last updated, In Universal Coordinated Time (UTC). \r\nNote that minor changes to the item (such as corrections to typos) may not cause this value to be modified.", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "TitleLocation": { "description": "A title prefix that gives the Intl.SOS country name or region name associated with the item. \r\nThis can be combined with the title field to give a standard representation of a headline for any given item.", "type": "string", "example": "Iran, Iraq" }, "PublishAction": { "description": "Indicates the last publish action performed on an item. \r\nIf the publish action was ‘Publish Major with email’ then the item was pushed out via email to clients. \r\nIf the action was ‘Publish Major’ then material changes to the item were made and the UpdatedDate was updated, \r\nbut a notification was not triggered. If the action was 'Publish minor’, an immaterial change was made to the item (such as to correct a typo).", "type": "string", "example": "Publish Major" }, "IsWorldWide": { "description": "If the item includes more than one country in more than one region, or an item has a ‘worldwide’ impact type, \r\nthis value will be set to True.", "type": "boolean", "example": false }, "SeverityAttributes": { "$ref": "#/definitions/Models.Alerts.Severity" }, "Service": { "description": "Indicates the service of the item.", "type": "string", "example": "Security" }, "Version": { "format": "int32", "description": "Indicates the version of the item.", "type": "integer", "example": 3 } } }, "Partner_Full": { "type": "object", "properties": { "Assessment": { "description": "An HTML field containing a manager-focused assessment. This field is optional and may only be included in some items.", "type": "string", "example": "" }, "ManagerAdvice": { "description": "An optional bulleted list of advice for managers.", "type": "string", "example": "" }, "MoreDetail": { "description": "Additional detail associated with the report. This may or may not be populated, depending on the nature of the report. This may include bulleted lists of additional information and hyperlinks to locations or resources.", "type": "string", "example": "" }, "TravellerAdvice": { "description": "A bulleted list of advice for travellers or assignees who are at or travelling to the destination.", "type": "string", "example": "" }, "Summary": { "description": "Typically a single paragraph less than 100 words long, which includes key facts of the event. May include hyperlinks to other resources.", "type": "string", "example": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
" }, "Categories": { "description": "A list of categories associated with the item. At least one and typically up to five categories will be included.\r\nexample: Civil unrest\r\nThe name of each category that is associated with the item.", "type": "array", "items": { "type": "string" }, "example": [ "Airport disruption" ] }, "Taxonomy": { "type": "array", "items": { "$ref": "#/definitions/Models.Taxonomy.TaxonomyItem" } }, "ActiveTo": { "description": "Date after which the alert is inactive", "type": "string", "example": "2021-06-02T00:00:00.0000000Z" }, "ActiveFrom": { "description": "Date from which the alert is active", "type": "string", "example": "2021-05-24T00:00:00.0000000Z" }, "CreatedDate": { "description": "Date/time the item was originally published, In Universal Coordinated Time (UTC)", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "EventStart": { "description": "Optional field specifiying the date of an event mentioned in the item.", "type": "string", "example": "" }, "EventEnd": { "description": "Optional field specifying the end date of an event mentioned in the item. Will not be populated unless the EventStart is populated.", "type": "string", "example": "" }, "Locations": { "properties": { "features": { "items": { "properties": { "geometry": { "properties": { "coordinates": { "items": { "type": "number", "description": "A coordinate value.", "example": "-106.08889" }, "type": "array", "description": "Coordinates are in x, y order (longitude, latitude).", "example": "[-106.08889,28.63528]" }, "type": { "type": "string", "description": "GeoJSON Property indicating the type of coordinates information. Will always be set to point.", "example": "Point" } }, "type": "object" }, "properties": { "properties": { "CountryIsoList": { "type": "string", "example": "IRN,IRQ", "description": "Comma delimited list of three-letter ISO country codes, which correspond to the country name at the same position within the CountryNameList property." }, "CountryNameList": { "type": "string", "example": "Iran,Iraq", "description": "Comma delimited list of country names, which correspond to the country ISO at the same position within the CountryIsoList property." }, "ImpactRadius": { "type": "integer", "description": "Impact radius around the point specified in the geometry component of the GeoJSON object. The typical minimum radius for items with a Local or Cross-border ImpactType will be 50km, to ensure at least one airport location is captured witinin the radius to facilitate itinerary-based alerting. If the ImpactType is set to Country, the radius will be 0." }, "ImpactType": { "type": "string", "description": "If the impact type is Local, the impact area includes locations that are within the radius and within the borders of specified country. If the impact type is Country, the entire area within the country's borders will be impacted. If the impact type is Cross-border, all locations within the radius (potentially in multiple countries) will be included.", "example": "Country" }, "IsPrimary": { "type": "boolean", "description": "Set to True for the primary location of the alert." }, "Name": { "type": "string", "description": "Editor-defined name of geographical location.", "example": "West London" } }, "type": "object" }, "type": { "type": "string", "example": "Feature" } }, "type": "object" }, "type": "array" }, "type": { "type": "string", "example": "FeatureCollection" } }, "type": "object", "description": "A GeoJSON collection that includes the location information associated with the item. Each item may have one or more location objects associated with it." }, "Id": { "format": "uuid", "description": "Globally Unique Identifier for the item.", "type": "string", "example": "8922453e-af02-4621-8374-e42b0d32d609" }, "Title": { "description": "example: Expect delays at international airports during ongoing strike by immigration officers\r\nTypically no longer than 100 characters and may include specific sub-country location information, \r\nsuch as ‘urban centres’ or a city name.", "type": "string", "example": "Urban centres: Plan journeys bypassing civil society protests in coming days" }, "Status": { "description": "Indicates whether the content / advice in the item is valid at the present time. \r\nArchived items represent a historic record of reporting. \r\nA ‘live’ item could have similar previous versions in the archive.", "type": "string", "example": "Live" }, "Severity": { "description": " The severity of an alert, as assessed by the analyst. Values include 1 - Notice, 2 - Advisory, \r\n3 - Special Advisory, 4 - Warning, 5 - Stand-By, 6 - Evacuate: Non Essential Staff, 7 - Evacuate: Full Evacuation", "type": "string", "example": "Special Advisory" }, "UpdatedDate": { "description": "Date/time the item was last updated, In Universal Coordinated Time (UTC). \r\nNote that minor changes to the item (such as corrections to typos) may not cause this value to be modified.", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "TitleLocation": { "description": "A title prefix that gives the Intl.SOS country name or region name associated with the item. \r\nThis can be combined with the title field to give a standard representation of a headline for any given item.", "type": "string", "example": "Iran, Iraq" }, "PublishAction": { "description": "Indicates the last publish action performed on an item. \r\nIf the publish action was ‘Publish Major with email’ then the item was pushed out via email to clients. \r\nIf the action was ‘Publish Major’ then material changes to the item were made and the UpdatedDate was updated, \r\nbut a notification was not triggered. If the action was 'Publish minor’, an immaterial change was made to the item (such as to correct a typo).", "type": "string", "example": "Publish Major" }, "IsWorldWide": { "description": "If the item includes more than one country in more than one region, or an item has a ‘worldwide’ impact type, \r\nthis value will be set to True.", "type": "boolean", "example": false }, "SeverityAttributes": { "$ref": "#/definitions/Models.Alerts.Severity" }, "Service": { "description": "Indicates the service of the item.", "type": "string", "example": "Security" }, "Version": { "format": "int32", "description": "Indicates the version of the item.", "type": "integer", "example": 3 } } }, "Partner_Traveller": { "type": "object", "properties": { "MoreDetail": { "description": "Additional detail associated with the report. This may or may not be populated, depending on the nature of the report. This may include bulleted lists of additional information and hyperlinks to locations or resources.", "type": "string", "example": "" }, "TravellerAdvice": { "description": "A bulleted list of advice for travellers or assignees who are at or travelling to the destination.", "type": "string", "example": "" }, "Summary": { "description": "Typically a single paragraph less than 100 words long, which includes key facts of the event. May include hyperlinks to other resources.", "type": "string", "example": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
" }, "Categories": { "description": "A list of categories associated with the item. At least one and typically up to five categories will be included.\r\nexample: Civil unrest\r\nThe name of each category that is associated with the item.", "type": "array", "items": { "type": "string" }, "example": [ "Airport disruption" ] }, "Taxonomy": { "type": "array", "items": { "$ref": "#/definitions/Models.Taxonomy.TaxonomyItem" } }, "ActiveTo": { "description": "Date after which the alert is inactive", "type": "string", "example": "2021-06-02T00:00:00.0000000Z" }, "ActiveFrom": { "description": "Date from which the alert is active", "type": "string", "example": "2021-05-24T00:00:00.0000000Z" }, "CreatedDate": { "description": "Date/time the item was originally published, In Universal Coordinated Time (UTC)", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "EventStart": { "description": "Optional field specifiying the date of an event mentioned in the item.", "type": "string", "example": "" }, "EventEnd": { "description": "Optional field specifying the end date of an event mentioned in the item. Will not be populated unless the EventStart is populated.", "type": "string", "example": "" }, "Locations": { "properties": { "features": { "items": { "properties": { "geometry": { "properties": { "coordinates": { "items": { "type": "number", "description": "A coordinate value.", "example": "-106.08889" }, "type": "array", "description": "Coordinates are in x, y order (longitude, latitude).", "example": "[-106.08889,28.63528]" }, "type": { "type": "string", "description": "GeoJSON Property indicating the type of coordinates information. Will always be set to point.", "example": "Point" } }, "type": "object" }, "properties": { "properties": { "CountryIsoList": { "type": "string", "example": "IRN,IRQ", "description": "Comma delimited list of three-letter ISO country codes, which correspond to the country name at the same position within the CountryNameList property." }, "CountryNameList": { "type": "string", "example": "Iran,Iraq", "description": "Comma delimited list of country names, which correspond to the country ISO at the same position within the CountryIsoList property." }, "ImpactRadius": { "type": "integer", "description": "Impact radius around the point specified in the geometry component of the GeoJSON object. The typical minimum radius for items with a Local or Cross-border ImpactType will be 50km, to ensure at least one airport location is captured witinin the radius to facilitate itinerary-based alerting. If the ImpactType is set to Country, the radius will be 0." }, "ImpactType": { "type": "string", "description": "If the impact type is Local, the impact area includes locations that are within the radius and within the borders of specified country. If the impact type is Country, the entire area within the country's borders will be impacted. If the impact type is Cross-border, all locations within the radius (potentially in multiple countries) will be included.", "example": "Country" }, "IsPrimary": { "type": "boolean", "description": "Set to True for the primary location of the alert." }, "Name": { "type": "string", "description": "Editor-defined name of geographical location.", "example": "West London" } }, "type": "object" }, "type": { "type": "string", "example": "Feature" } }, "type": "object" }, "type": "array" }, "type": { "type": "string", "example": "FeatureCollection" } }, "type": "object", "description": "A GeoJSON collection that includes the location information associated with the item. Each item may have one or more location objects associated with it." }, "Id": { "format": "uuid", "description": "Globally Unique Identifier for the item.", "type": "string", "example": "8922453e-af02-4621-8374-e42b0d32d609" }, "Title": { "description": "example: Expect delays at international airports during ongoing strike by immigration officers\r\nTypically no longer than 100 characters and may include specific sub-country location information, \r\nsuch as ‘urban centres’ or a city name.", "type": "string", "example": "Urban centres: Plan journeys bypassing civil society protests in coming days" }, "Status": { "description": "Indicates whether the content / advice in the item is valid at the present time. \r\nArchived items represent a historic record of reporting. \r\nA ‘live’ item could have similar previous versions in the archive.", "type": "string", "example": "Live" }, "Severity": { "description": " The severity of an alert, as assessed by the analyst. Values include 1 - Notice, 2 - Advisory, \r\n3 - Special Advisory, 4 - Warning, 5 - Stand-By, 6 - Evacuate: Non Essential Staff, 7 - Evacuate: Full Evacuation", "type": "string", "example": "Special Advisory" }, "UpdatedDate": { "description": "Date/time the item was last updated, In Universal Coordinated Time (UTC). \r\nNote that minor changes to the item (such as corrections to typos) may not cause this value to be modified.", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "TitleLocation": { "description": "A title prefix that gives the Intl.SOS country name or region name associated with the item. \r\nThis can be combined with the title field to give a standard representation of a headline for any given item.", "type": "string", "example": "Iran, Iraq" }, "PublishAction": { "description": "Indicates the last publish action performed on an item. \r\nIf the publish action was ‘Publish Major with email’ then the item was pushed out via email to clients. \r\nIf the action was ‘Publish Major’ then material changes to the item were made and the UpdatedDate was updated, \r\nbut a notification was not triggered. If the action was 'Publish minor’, an immaterial change was made to the item (such as to correct a typo).", "type": "string", "example": "Publish Major" }, "IsWorldWide": { "description": "If the item includes more than one country in more than one region, or an item has a ‘worldwide’ impact type, \r\nthis value will be set to True.", "type": "boolean", "example": false }, "SeverityAttributes": { "$ref": "#/definitions/Models.Alerts.Severity" }, "Service": { "description": "Indicates the service of the item.", "type": "string", "example": "Security" }, "Version": { "format": "int32", "description": "Indicates the version of the item.", "type": "integer", "example": 3 } } }, "Partner_Summaries": { "type": "object", "properties": { "Summary": { "description": "Typically a single paragraph less than 100 words long, which includes key facts of the event. May include hyperlinks to other resources.", "type": "string", "example": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
" }, "Categories": { "description": "A list of categories associated with the item. At least one and typically up to five categories will be included.\r\nexample: Civil unrest\r\nThe name of each category that is associated with the item.", "type": "array", "items": { "type": "string" }, "example": [ "Airport disruption" ] }, "Taxonomy": { "type": "array", "items": { "$ref": "#/definitions/Models.Taxonomy.TaxonomyItem" } }, "ActiveTo": { "description": "Date after which the alert is inactive", "type": "string", "example": "2021-06-02T00:00:00.0000000Z" }, "ActiveFrom": { "description": "Date from which the alert is active", "type": "string", "example": "2021-05-24T00:00:00.0000000Z" }, "CreatedDate": { "description": "Date/time the item was originally published, In Universal Coordinated Time (UTC)", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "EventStart": { "description": "Optional field specifiying the date of an event mentioned in the item.", "type": "string", "example": "" }, "EventEnd": { "description": "Optional field specifying the end date of an event mentioned in the item. Will not be populated unless the EventStart is populated.", "type": "string", "example": "" }, "Locations": { "properties": { "features": { "items": { "properties": { "geometry": { "properties": { "coordinates": { "items": { "type": "number", "description": "A coordinate value.", "example": "-106.08889" }, "type": "array", "description": "Coordinates are in x, y order (longitude, latitude).", "example": "[-106.08889,28.63528]" }, "type": { "type": "string", "description": "GeoJSON Property indicating the type of coordinates information. Will always be set to point.", "example": "Point" } }, "type": "object" }, "properties": { "properties": { "CountryIsoList": { "type": "string", "example": "IRN,IRQ", "description": "Comma delimited list of three-letter ISO country codes, which correspond to the country name at the same position within the CountryNameList property." }, "CountryNameList": { "type": "string", "example": "Iran,Iraq", "description": "Comma delimited list of country names, which correspond to the country ISO at the same position within the CountryIsoList property." }, "ImpactRadius": { "type": "integer", "description": "Impact radius around the point specified in the geometry component of the GeoJSON object. The typical minimum radius for items with a Local or Cross-border ImpactType will be 50km, to ensure at least one airport location is captured witinin the radius to facilitate itinerary-based alerting. If the ImpactType is set to Country, the radius will be 0." }, "ImpactType": { "type": "string", "description": "If the impact type is Local, the impact area includes locations that are within the radius and within the borders of specified country. If the impact type is Country, the entire area within the country's borders will be impacted. If the impact type is Cross-border, all locations within the radius (potentially in multiple countries) will be included.", "example": "Country" }, "IsPrimary": { "type": "boolean", "description": "Set to True for the primary location of the alert." }, "Name": { "type": "string", "description": "Editor-defined name of geographical location.", "example": "West London" } }, "type": "object" }, "type": { "type": "string", "example": "Feature" } }, "type": "object" }, "type": "array" }, "type": { "type": "string", "example": "FeatureCollection" } }, "type": "object", "description": "A GeoJSON collection that includes the location information associated with the item. Each item may have one or more location objects associated with it." }, "Id": { "format": "uuid", "description": "Globally Unique Identifier for the item.", "type": "string", "example": "8922453e-af02-4621-8374-e42b0d32d609" }, "Title": { "description": "example: Expect delays at international airports during ongoing strike by immigration officers\r\nTypically no longer than 100 characters and may include specific sub-country location information, \r\nsuch as ‘urban centres’ or a city name.", "type": "string", "example": "Urban centres: Plan journeys bypassing civil society protests in coming days" }, "Status": { "description": "Indicates whether the content / advice in the item is valid at the present time. \r\nArchived items represent a historic record of reporting. \r\nA ‘live’ item could have similar previous versions in the archive.", "type": "string", "example": "Live" }, "Severity": { "description": " The severity of an alert, as assessed by the analyst. Values include 1 - Notice, 2 - Advisory, \r\n3 - Special Advisory, 4 - Warning, 5 - Stand-By, 6 - Evacuate: Non Essential Staff, 7 - Evacuate: Full Evacuation", "type": "string", "example": "Special Advisory" }, "UpdatedDate": { "description": "Date/time the item was last updated, In Universal Coordinated Time (UTC). \r\nNote that minor changes to the item (such as corrections to typos) may not cause this value to be modified.", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "TitleLocation": { "description": "A title prefix that gives the Intl.SOS country name or region name associated with the item. \r\nThis can be combined with the title field to give a standard representation of a headline for any given item.", "type": "string", "example": "Iran, Iraq" }, "PublishAction": { "description": "Indicates the last publish action performed on an item. \r\nIf the publish action was ‘Publish Major with email’ then the item was pushed out via email to clients. \r\nIf the action was ‘Publish Major’ then material changes to the item were made and the UpdatedDate was updated, \r\nbut a notification was not triggered. If the action was 'Publish minor’, an immaterial change was made to the item (such as to correct a typo).", "type": "string", "example": "Publish Major" }, "IsWorldWide": { "description": "If the item includes more than one country in more than one region, or an item has a ‘worldwide’ impact type, \r\nthis value will be set to True.", "type": "boolean", "example": false }, "SeverityAttributes": { "$ref": "#/definitions/Models.Alerts.Severity" }, "Service": { "description": "Indicates the service of the item.", "type": "string", "example": "Security" }, "Version": { "format": "int32", "description": "Indicates the version of the item.", "type": "integer", "example": 3 } } }, "Partner_Headlines": { "type": "object", "properties": { "Categories": { "description": "A list of categories associated with the item. At least one and typically up to five categories will be included.\r\nexample: Civil unrest\r\nThe name of each category that is associated with the item.", "type": "array", "items": { "type": "string" }, "example": [ "Airport disruption" ] }, "Taxonomy": { "type": "array", "items": { "$ref": "#/definitions/Models.Taxonomy.TaxonomyItem" } }, "ActiveTo": { "description": "Date after which the alert is inactive", "type": "string", "example": "2021-06-02T00:00:00.0000000Z" }, "ActiveFrom": { "description": "Date from which the alert is active", "type": "string", "example": "2021-05-24T00:00:00.0000000Z" }, "CreatedDate": { "description": "Date/time the item was originally published, In Universal Coordinated Time (UTC)", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "EventStart": { "description": "Optional field specifiying the date of an event mentioned in the item.", "type": "string", "example": "" }, "EventEnd": { "description": "Optional field specifying the end date of an event mentioned in the item. Will not be populated unless the EventStart is populated.", "type": "string", "example": "" }, "Locations": { "properties": { "features": { "items": { "properties": { "geometry": { "properties": { "coordinates": { "items": { "type": "number", "description": "A coordinate value.", "example": "-106.08889" }, "type": "array", "description": "Coordinates are in x, y order (longitude, latitude).", "example": "[-106.08889,28.63528]" }, "type": { "type": "string", "description": "GeoJSON Property indicating the type of coordinates information. Will always be set to point.", "example": "Point" } }, "type": "object" }, "properties": { "properties": { "CountryIsoList": { "type": "string", "example": "IRN,IRQ", "description": "Comma delimited list of three-letter ISO country codes, which correspond to the country name at the same position within the CountryNameList property." }, "CountryNameList": { "type": "string", "example": "Iran,Iraq", "description": "Comma delimited list of country names, which correspond to the country ISO at the same position within the CountryIsoList property." }, "ImpactRadius": { "type": "integer", "description": "Impact radius around the point specified in the geometry component of the GeoJSON object. The typical minimum radius for items with a Local or Cross-border ImpactType will be 50km, to ensure at least one airport location is captured witinin the radius to facilitate itinerary-based alerting. If the ImpactType is set to Country, the radius will be 0." }, "ImpactType": { "type": "string", "description": "If the impact type is Local, the impact area includes locations that are within the radius and within the borders of specified country. If the impact type is Country, the entire area within the country's borders will be impacted. If the impact type is Cross-border, all locations within the radius (potentially in multiple countries) will be included.", "example": "Country" }, "IsPrimary": { "type": "boolean", "description": "Set to True for the primary location of the alert." }, "Name": { "type": "string", "description": "Editor-defined name of geographical location.", "example": "West London" } }, "type": "object" }, "type": { "type": "string", "example": "Feature" } }, "type": "object" }, "type": "array" }, "type": { "type": "string", "example": "FeatureCollection" } }, "type": "object", "description": "A GeoJSON collection that includes the location information associated with the item. Each item may have one or more location objects associated with it." }, "Id": { "format": "uuid", "description": "Globally Unique Identifier for the item.", "type": "string", "example": "8922453e-af02-4621-8374-e42b0d32d609" }, "Title": { "description": "example: Expect delays at international airports during ongoing strike by immigration officers\r\nTypically no longer than 100 characters and may include specific sub-country location information, \r\nsuch as ‘urban centres’ or a city name.", "type": "string", "example": "Urban centres: Plan journeys bypassing civil society protests in coming days" }, "Status": { "description": "Indicates whether the content / advice in the item is valid at the present time. \r\nArchived items represent a historic record of reporting. \r\nA ‘live’ item could have similar previous versions in the archive.", "type": "string", "example": "Live" }, "Severity": { "description": " The severity of an alert, as assessed by the analyst. Values include 1 - Notice, 2 - Advisory, \r\n3 - Special Advisory, 4 - Warning, 5 - Stand-By, 6 - Evacuate: Non Essential Staff, 7 - Evacuate: Full Evacuation", "type": "string", "example": "Special Advisory" }, "UpdatedDate": { "description": "Date/time the item was last updated, In Universal Coordinated Time (UTC). \r\nNote that minor changes to the item (such as corrections to typos) may not cause this value to be modified.", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "TitleLocation": { "description": "A title prefix that gives the Intl.SOS country name or region name associated with the item. \r\nThis can be combined with the title field to give a standard representation of a headline for any given item.", "type": "string", "example": "Iran, Iraq" }, "PublishAction": { "description": "Indicates the last publish action performed on an item. \r\nIf the publish action was ‘Publish Major with email’ then the item was pushed out via email to clients. \r\nIf the action was ‘Publish Major’ then material changes to the item were made and the UpdatedDate was updated, \r\nbut a notification was not triggered. If the action was 'Publish minor’, an immaterial change was made to the item (such as to correct a typo).", "type": "string", "example": "Publish Major" }, "IsWorldWide": { "description": "If the item includes more than one country in more than one region, or an item has a ‘worldwide’ impact type, \r\nthis value will be set to True.", "type": "boolean", "example": false }, "SeverityAttributes": { "$ref": "#/definitions/Models.Alerts.Severity" }, "Service": { "description": "Indicates the service of the item.", "type": "string", "example": "Security" }, "Version": { "format": "int32", "description": "Indicates the version of the item.", "type": "integer", "example": 3 } } }, "Thirdparty_Full": { "type": "object", "properties": { "Assessment": { "description": "An HTML field containing a manager-focused assessment. This field is optional and may only be included in some items.", "type": "string", "example": "" }, "ManagerAdvice": { "description": "An optional bulleted list of advice for managers.", "type": "string", "example": "" }, "MoreDetail": { "description": "Additional detail associated with the report. This may or may not be populated, depending on the nature of the report. \r\nThis may include bulleted lists of additional information and hyperlinks to locations or resources.", "type": "string", "example": "" }, "TravellerAdvice": { "description": "A bulleted list of advice for travellers or assignees who are at or travelling to the destination.", "type": "string", "example": "" }, "Summary": { "description": "Typically a single paragraph less than 100 words long, which includes key facts of the event. May include hyperlinks to other resources.", "type": "string", "example": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
" }, "CreatedDate": { "description": "Date/time the item was originally published, In Universal Coordinated Time (UTC)", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "EventStart": { "description": "Optional field specifiying the date of an event mentioned in the item.", "type": "string", "example": "" }, "EventEnd": { "description": "Optional field specifying the end date of an event mentioned in the item. Will not be populated unless the EventStart is populated.", "type": "string", "example": "" }, "Locations": { "items": { "type": "object", "properties": { "GeoName": { "type": "string", "description": "Name of geographical location", "example": "Iran" }, "CountryIsoList": { "type": "string", "example": "IRN,IRQ", "description": "Comma delimited list of three-letter ISO country codes, which correspond to the country name at the same position within the CountryNameList property." }, "CountryNameList": { "type": "string", "example": "Iran,Iraq", "description": "Comma delimited list of country names, which correspond to the country ISO at the same position within the CountryIsoList property." } } }, "type": "array" }, "Id": { "format": "uuid", "description": "Globally Unique Identifier for the item.", "type": "string", "example": "8922453e-af02-4621-8374-e42b0d32d609" }, "Title": { "description": "example: Expect delays at international airports during ongoing strike by immigration officers\r\nTypically no longer than 100 characters and may include specific sub-country location information, \r\nsuch as ‘urban centres’ or a city name.", "type": "string", "example": "Urban centres: Plan journeys bypassing civil society protests in coming days" }, "Status": { "description": "Indicates whether the content / advice in the item is valid at the present time. \r\nArchived items represent a historic record of reporting. \r\nA ‘live’ item could have similar previous versions in the archive.", "type": "string", "example": "Live" }, "Severity": { "description": " The severity of an alert, as assessed by the analyst. Values include 1 - Notice, 2 - Advisory, \r\n3 - Special Advisory, 4 - Warning, 5 - Stand-By, 6 - Evacuate: Non Essential Staff, 7 - Evacuate: Full Evacuation", "type": "string", "example": "Special Advisory" }, "UpdatedDate": { "description": "Date/time the item was last updated, In Universal Coordinated Time (UTC). \r\nNote that minor changes to the item (such as corrections to typos) may not cause this value to be modified.", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "TitleLocation": { "description": "A title prefix that gives the Intl.SOS country name or region name associated with the item. \r\nThis can be combined with the title field to give a standard representation of a headline for any given item.", "type": "string", "example": "Iran, Iraq" }, "PublishAction": { "description": "Indicates the last publish action performed on an item. \r\nIf the publish action was ‘Publish Major with email’ then the item was pushed out via email to clients. \r\nIf the action was ‘Publish Major’ then material changes to the item were made and the UpdatedDate was updated, \r\nbut a notification was not triggered. If the action was 'Publish minor’, an immaterial change was made to the item (such as to correct a typo).", "type": "string", "example": "Publish Major" }, "IsWorldWide": { "description": "If the item includes more than one country in more than one region, or an item has a ‘worldwide’ impact type, \r\nthis value will be set to True.", "type": "boolean", "example": false }, "SeverityAttributes": { "$ref": "#/definitions/Models.Alerts.Severity" }, "Service": { "description": "Indicates the service of the item.", "type": "string", "example": "Security" }, "Version": { "format": "int32", "description": "Indicates the version of the item.", "type": "integer", "example": 3 } } }, "Thirdparty_Traveller": { "type": "object", "properties": { "MoreDetail": { "description": "Additional detail associated with the report. This may or may not be populated, depending on the nature of the report. \r\nThis may include bulleted lists of additional information and hyperlinks to locations or resources.", "type": "string", "example": "" }, "TravellerAdvice": { "description": "A bulleted list of advice for travellers or assignees who are at or travelling to the destination.", "type": "string", "example": "" }, "Summary": { "description": "Typically a single paragraph less than 100 words long, which includes key facts of the event. May include hyperlinks to other resources.", "type": "string", "example": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
" }, "CreatedDate": { "description": "Date/time the item was originally published, In Universal Coordinated Time (UTC)", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "EventStart": { "description": "Optional field specifiying the date of an event mentioned in the item.", "type": "string", "example": "" }, "EventEnd": { "description": "Optional field specifying the end date of an event mentioned in the item. Will not be populated unless the EventStart is populated.", "type": "string", "example": "" }, "Locations": { "items": { "type": "object", "properties": { "GeoName": { "type": "string", "description": "Name of geographical location", "example": "Iran" }, "CountryIsoList": { "type": "string", "example": "IRN,IRQ", "description": "Comma delimited list of three-letter ISO country codes, which correspond to the country name at the same position within the CountryNameList property." }, "CountryNameList": { "type": "string", "example": "Iran,Iraq", "description": "Comma delimited list of country names, which correspond to the country ISO at the same position within the CountryIsoList property." } } }, "type": "array" }, "Id": { "format": "uuid", "description": "Globally Unique Identifier for the item.", "type": "string", "example": "8922453e-af02-4621-8374-e42b0d32d609" }, "Title": { "description": "example: Expect delays at international airports during ongoing strike by immigration officers\r\nTypically no longer than 100 characters and may include specific sub-country location information, \r\nsuch as ‘urban centres’ or a city name.", "type": "string", "example": "Urban centres: Plan journeys bypassing civil society protests in coming days" }, "Status": { "description": "Indicates whether the content / advice in the item is valid at the present time. \r\nArchived items represent a historic record of reporting. \r\nA ‘live’ item could have similar previous versions in the archive.", "type": "string", "example": "Live" }, "Severity": { "description": " The severity of an alert, as assessed by the analyst. Values include 1 - Notice, 2 - Advisory, \r\n3 - Special Advisory, 4 - Warning, 5 - Stand-By, 6 - Evacuate: Non Essential Staff, 7 - Evacuate: Full Evacuation", "type": "string", "example": "Special Advisory" }, "UpdatedDate": { "description": "Date/time the item was last updated, In Universal Coordinated Time (UTC). \r\nNote that minor changes to the item (such as corrections to typos) may not cause this value to be modified.", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "TitleLocation": { "description": "A title prefix that gives the Intl.SOS country name or region name associated with the item. \r\nThis can be combined with the title field to give a standard representation of a headline for any given item.", "type": "string", "example": "Iran, Iraq" }, "PublishAction": { "description": "Indicates the last publish action performed on an item. \r\nIf the publish action was ‘Publish Major with email’ then the item was pushed out via email to clients. \r\nIf the action was ‘Publish Major’ then material changes to the item were made and the UpdatedDate was updated, \r\nbut a notification was not triggered. If the action was 'Publish minor’, an immaterial change was made to the item (such as to correct a typo).", "type": "string", "example": "Publish Major" }, "IsWorldWide": { "description": "If the item includes more than one country in more than one region, or an item has a ‘worldwide’ impact type, \r\nthis value will be set to True.", "type": "boolean", "example": false }, "SeverityAttributes": { "$ref": "#/definitions/Models.Alerts.Severity" }, "Service": { "description": "Indicates the service of the item.", "type": "string", "example": "Security" }, "Version": { "format": "int32", "description": "Indicates the version of the item.", "type": "integer", "example": 3 } } }, "Thirdparty_Summaries": { "type": "object", "properties": { "Summary": { "description": "Typically a single paragraph less than 100 words long, which includes key facts of the event. May include hyperlinks to other resources.", "type": "string", "example": "Members planning to use Almaty International Airport (ALA) in the coming months should reconfirm flights as runway renovations will be undertaken at the facility from 20 July. The runway will be closed for all flights every Thursday from 10.40 to 14.40 (local time) until 1 November. During this period, airlines will either operate revised flight schedules or cancel flights; delays are also possible.
" }, "CreatedDate": { "description": "Date/time the item was originally published, In Universal Coordinated Time (UTC)", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "EventStart": { "description": "Optional field specifiying the date of an event mentioned in the item.", "type": "string", "example": "" }, "EventEnd": { "description": "Optional field specifying the end date of an event mentioned in the item. Will not be populated unless the EventStart is populated.", "type": "string", "example": "" }, "Locations": { "items": { "type": "object", "properties": { "GeoName": { "type": "string", "description": "Name of geographical location", "example": "Iran" }, "CountryIsoList": { "type": "string", "example": "IRN,IRQ", "description": "Comma delimited list of three-letter ISO country codes, which correspond to the country name at the same position within the CountryNameList property." }, "CountryNameList": { "type": "string", "example": "Iran,Iraq", "description": "Comma delimited list of country names, which correspond to the country ISO at the same position within the CountryIsoList property." } } }, "type": "array" }, "Id": { "format": "uuid", "description": "Globally Unique Identifier for the item.", "type": "string", "example": "8922453e-af02-4621-8374-e42b0d32d609" }, "Title": { "description": "example: Expect delays at international airports during ongoing strike by immigration officers\r\nTypically no longer than 100 characters and may include specific sub-country location information, \r\nsuch as ‘urban centres’ or a city name.", "type": "string", "example": "Urban centres: Plan journeys bypassing civil society protests in coming days" }, "Status": { "description": "Indicates whether the content / advice in the item is valid at the present time. \r\nArchived items represent a historic record of reporting. \r\nA ‘live’ item could have similar previous versions in the archive.", "type": "string", "example": "Live" }, "Severity": { "description": " The severity of an alert, as assessed by the analyst. Values include 1 - Notice, 2 - Advisory, \r\n3 - Special Advisory, 4 - Warning, 5 - Stand-By, 6 - Evacuate: Non Essential Staff, 7 - Evacuate: Full Evacuation", "type": "string", "example": "Special Advisory" }, "UpdatedDate": { "description": "Date/time the item was last updated, In Universal Coordinated Time (UTC). \r\nNote that minor changes to the item (such as corrections to typos) may not cause this value to be modified.", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "TitleLocation": { "description": "A title prefix that gives the Intl.SOS country name or region name associated with the item. \r\nThis can be combined with the title field to give a standard representation of a headline for any given item.", "type": "string", "example": "Iran, Iraq" }, "PublishAction": { "description": "Indicates the last publish action performed on an item. \r\nIf the publish action was ‘Publish Major with email’ then the item was pushed out via email to clients. \r\nIf the action was ‘Publish Major’ then material changes to the item were made and the UpdatedDate was updated, \r\nbut a notification was not triggered. If the action was 'Publish minor’, an immaterial change was made to the item (such as to correct a typo).", "type": "string", "example": "Publish Major" }, "IsWorldWide": { "description": "If the item includes more than one country in more than one region, or an item has a ‘worldwide’ impact type, \r\nthis value will be set to True.", "type": "boolean", "example": false }, "SeverityAttributes": { "$ref": "#/definitions/Models.Alerts.Severity" }, "Service": { "description": "Indicates the service of the item.", "type": "string", "example": "Security" }, "Version": { "format": "int32", "description": "Indicates the version of the item.", "type": "integer", "example": 3 } } }, "Thirdparty_Headlines": { "type": "object", "properties": { "Locations": { "items": { "type": "object", "properties": { "GeoName": { "type": "string", "description": "Name of geographical location", "example": "Iran" }, "CountryIsoList": { "type": "string", "example": "IRN,IRQ", "description": "Comma delimited list of three-letter ISO country codes, which correspond to the country name at the same position within the CountryNameList property." }, "CountryNameList": { "type": "string", "example": "Iran,Iraq", "description": "Comma delimited list of country names, which correspond to the country ISO at the same position within the CountryIsoList property." } } }, "type": "array" }, "Id": { "format": "uuid", "description": "Globally Unique Identifier for the item.", "type": "string", "example": "8922453e-af02-4621-8374-e42b0d32d609" }, "Title": { "description": "example: Expect delays at international airports during ongoing strike by immigration officers\r\nTypically no longer than 100 characters and may include specific sub-country location information, \r\nsuch as ‘urban centres’ or a city name.", "type": "string", "example": "Urban centres: Plan journeys bypassing civil society protests in coming days" }, "Status": { "description": "Indicates whether the content / advice in the item is valid at the present time. \r\nArchived items represent a historic record of reporting. \r\nA ‘live’ item could have similar previous versions in the archive.", "type": "string", "example": "Live" }, "Severity": { "description": " The severity of an alert, as assessed by the analyst. Values include 1 - Notice, 2 - Advisory, \r\n3 - Special Advisory, 4 - Warning, 5 - Stand-By, 6 - Evacuate: Non Essential Staff, 7 - Evacuate: Full Evacuation", "type": "string", "example": "Special Advisory" }, "UpdatedDate": { "description": "Date/time the item was last updated, In Universal Coordinated Time (UTC). \r\nNote that minor changes to the item (such as corrections to typos) may not cause this value to be modified.", "type": "string", "example": "2021-05-24T02:16:52.0000000Z" }, "TitleLocation": { "description": "A title prefix that gives the Intl.SOS country name or region name associated with the item. \r\nThis can be combined with the title field to give a standard representation of a headline for any given item.", "type": "string", "example": "Iran, Iraq" }, "PublishAction": { "description": "Indicates the last publish action performed on an item. \r\nIf the publish action was ‘Publish Major with email’ then the item was pushed out via email to clients. \r\nIf the action was ‘Publish Major’ then material changes to the item were made and the UpdatedDate was updated, \r\nbut a notification was not triggered. If the action was 'Publish minor’, an immaterial change was made to the item (such as to correct a typo).", "type": "string", "example": "Publish Major" }, "IsWorldWide": { "description": "If the item includes more than one country in more than one region, or an item has a ‘worldwide’ impact type, \r\nthis value will be set to True.", "type": "boolean", "example": false }, "SeverityAttributes": { "$ref": "#/definitions/Models.Alerts.Severity" }, "Service": { "description": "Indicates the service of the item.", "type": "string", "example": "Security" }, "Version": { "format": "int32", "description": "Indicates the version of the item.", "type": "integer", "example": 3 } } }, "Models.Taxonomy.ParentTaxonomyItem": { "type": "object", "properties": { "name": { "description": "Name of the parent taxonomy item.", "type": "string", "example": "Assistance" }, "ref": { "description": "URI location of the parent taxonomy item.", "type": "string", "example": "api/taxonomy/v1/en-GB/Assistance/88198" } } }, "Models.Taxonomy.TaxonomyItem": { "type": "object", "properties": { "TaxonomyId": { "format": "int32", "description": "Id of the taxonomy item.", "type": "integer", "example": 24999 }, "Uri": { "description": "Unique Reference Identifier specifying the location of the item. This path will include item ID and will also include the hierarchy.", "type": "string", "example": "api/taxonomy/v1/en-GB/Assistance/Travel Security/Transport/Transport disruption/Airport disruption/24999" }, "Term": { "description": "Text field containing the dispay name of the taxonomy item.", "type": "string", "example": "Airport disruption" }, "LegacyId": { "format": "int32", "description": "Optional Legacy ID field that can be used to map the taxonomy item to similar content in legacy systems.", "type": "integer", "example": 33 }, "PortalId": { "format": "int32", "description": "Optional Portal ID field that can be used to map the taxonomy item to similar content in legacy systems.", "type": "integer", "example": 0 }, "ImageUrl": { "description": "Optional URL for an image associated with the taxonomy item.", "type": "string", "example": "" }, "UpdatedDate": { "format": "date-time", "description": "Date the item was last updated.", "type": "string", "example": "2018-01-10T18:06:24Z" }, "Descendants": { "description": "Array of descendants of the requested item. These objects will conform to the same schema as the requested item. This array will be null if the ‘return descendants’ request parameter is set to ‘false’.", "type": "array", "items": { "$ref": "#/definitions/Models.Taxonomy.TaxonomyItem" } }, "Hierarchy": { "description": "Object containing name and location of the taxonomy item’s parents.", "type": "array", "items": { "$ref": "#/definitions/Models.Taxonomy.ParentTaxonomyItem" } } } }, "Models.Alerts.Severity": { "type": "object", "properties": { "Name": { "description": "Name of the Severity item", "type": "string", "example": "Special Advisory" }, "Rank": { "description": "Rank of the Severity level", "type": "string", "example": "3" }, "Icon": { "description": "Icon of the Severity item", "type": "string", "example": "https://images.internationalsos.com//-/media/dynamic-content/severity-icons/severity3.png" }, "Color": { "description": "Color of the Severity item", "type": "string", "example": "#D4002C" } } }, "BadRequestExample": { "type": "object", "properties": {} } }, "securityDefinitions": { "clientKey": { "type": "apiKey", "name": "Authorization", "in": "header" } }, "security": [ { "clientKey": [] } ] }