Download OpenAPI specification:
The Airside Sync system provides an open REST API for accessing report data.
The REST API uses JSON over HTTPS exclusively. In a cloud deployment the API is
exposed on https://api.safe-sky.net/; in an on-premises deployment the URL
will vary. The API uses versioned URLs, where the current API version is /v1.
Airside Sync provides an OpenAPI specification documenting the current API in a machine readable manner, v2 and v3. This specification can be used to generate API code for many languages. The latest version is always available at https://api.safe-sky.net/v1/openapi.json (OpenAPI v2) and https://api.safe-sky.net/v1/openapi-v3.json (OpenAPI v3), with this rendered documentation available at https://api.safe-sky.net/v1/openapi.html.
Airside Sync is deployed in multiple geographic regions. A customer aerodrome is provisioned into a single region, the one closest to the customer. Region switching is automatic and transparent when using the Airside Sync client, but when using the API you must ensure to use the correct region yourself. If you are unsure about your region, please discuss with customer support.
The region is set by using the corresponding subdomain of
api.safe-sky.net. Currently, the following regions exist:
eu.api.safe-sky.net for European and British customers. This region is
also accessed when using api.safe-sky.net without a region specifier.us.api.safe-sky.net for North American, South American and Caribbean
customers.Using the wrong region for an API call for a given aerodrome will result in an error.
API responses are normally compact JSON. To instead receive formatted
human-readable JSON you can add the query parameter ?pretty to any API
call or, equivalently, set the Accept: application/json+pretty query
header.
All API methods require authentication, unless otherwise noted. Each request
must carry an Authorization header with the Bearer scheme and a valid
API key. An API key can be created in the Airside Sync GUI, using the
"Manage API keys" button at the bottom of the "About" screen. API keys are
tied to the user who created them and will inherit their access permissions.
API keys can be set to expire or have an unlimited lifetime.
There is a read only API key pst_bs6xevRYWdtan2KzhKpAPupiY2KLnAD7 that
can be used for demonstration and experimentation on the fictional aerodrome
DEMO. For example, to verify authentication from the command line:
% curl -H 'Authorization: Bearer pst_bs6xevRYWdtan2KzhKpAPupiY2KLnAD7' \
https://api.safe-sky.net/v1/auth/user?pretty
{
"username": "dc78f878-2d7c-40b9-a416-52a7ceea1fff",
"email": "demo@safe-sky.net",
"displayName": "Airside Sync Demo User",
...
Returns the usernames of users with task management permissions. The users are filtered based on the requesting user's permissions. A user cannot obtain a list of users of task types which the requesting user has no permissions to.
| aerodromeId required | string |
Array of objects (ListTaskUsersResponseTaskUser) | |||||||
Array
| |||||||
{- "taskUsers": [
- {
- "displayName": "string",
- "email": "string",
- "taskType": [
- 0
]
}
]
}Returns a list of users that are members of the aerodrome. This method requires aerodrome admin permissions.
| aerodromeId required | string Returns users with permission for the aerodrome in question only, requires aerodrome admin permission. |
Array of objects (User) | |||||||||||||||||||||
Array
| |||||||||||||||||||||
{- "users": [
- {
- "accountDisabled": true,
- "city": "string",
- "country": "string",
- "created": "2019-08-24T14:15:22Z",
- "displayName": "string",
- "email": "string",
- "permissions": [
- {
- "aerodromeAdmin": true,
- "aerodromeId": "string",
- "archiveRead": true,
- "archiveReadMetadata": true,
- "assessmentViewer": true,
- "customFormIds": [
- "string"
], - "liveWrite": true,
- "regionId": "EU",
- "reportSend": true,
- "revokeAccess": true,
- "standAssessment": true,
- "standCoordinator": true,
- "taskTypeIds": [
- 0
]
}
], - "systemAdmin": true,
- "userId": "string",
- "viaReadOnlyToken": true
}
]
}The email address is used to look up an existing user or, if one does not exist, invite the user to the Airside Sync system. In this case the display name is used when creating the user.
| displayName | string | ||||||||||||||||||||||||
string | |||||||||||||||||||||||||
| newPermissionsStyle | boolean | ||||||||||||||||||||||||
object (Permissions) | |||||||||||||||||||||||||
| |||||||||||||||||||||||||
| error | string | ||||||||||||||||||||
| sentMail | boolean | ||||||||||||||||||||
object (User) | |||||||||||||||||||||
| |||||||||||||||||||||
{- "displayName": "string",
- "email": "string",
- "newPermissionsStyle": true,
- "permissions": {
- "aerodromeAdmin": true,
- "aerodromeId": "string",
- "archiveRead": true,
- "archiveReadMetadata": true,
- "assessmentViewer": true,
- "customFormIds": [
- "string"
], - "liveWrite": true,
- "reportSend": true,
- "revokeAccess": true,
- "standAssessment": true,
- "standCoordinator": true,
- "taskTypeIds": [
- 0
]
}
}{- "error": "string",
- "sentMail": true,
- "user": {
- "accountDisabled": true,
- "city": "string",
- "country": "string",
- "created": "2019-08-24T14:15:22Z",
- "displayName": "string",
- "email": "string",
- "permissions": [
- {
- "aerodromeAdmin": true,
- "aerodromeId": "string",
- "archiveRead": true,
- "archiveReadMetadata": true,
- "assessmentViewer": true,
- "customFormIds": [
- "string"
], - "liveWrite": true,
- "regionId": "EU",
- "reportSend": true,
- "revokeAccess": true,
- "standAssessment": true,
- "standCoordinator": true,
- "taskTypeIds": [
- 0
]
}
], - "systemAdmin": true,
- "userId": "string",
- "viaReadOnlyToken": true
}
}The system login configuration determines whether internal or external authentication is used, and which ID provider to use.
| contactRequestUrl | string | ||
| kind | string (Login method type) Default: "LOGINKIND_UNSUPPORTED" Enum: "LOGINKIND_UNSUPPORTED" "LOGINKIND_OIDC" | ||
| manageAccountUrl | string | ||
| oidcAllowedTfps | Array of strings | ||
| oidcClientId | string | ||
object | |||
| |||
| oidcIssuer | string | ||
| oidcJwksUrl | string | ||
| oidcLoginDiscoveryUrl | string | ||
| oidcPermissionsClaim | string | ||
| oidcRequiredScps | Array of strings | ||
| oidcResetDiscoveryUrl | string | ||
| oidcScopes | Array of strings | ||
| oidcSystemAdminClaim | string | ||
{- "contactRequestUrl": "string",
- "kind": "LOGINKIND_UNSUPPORTED",
- "manageAccountUrl": "string",
- "oidcAllowedTfps": [
- "string"
], - "oidcClientId": "string",
- "oidcExtra": {
- "property1": "string",
- "property2": "string"
}, - "oidcIssuer": "string",
- "oidcJwksUrl": "string",
- "oidcLoginDiscoveryUrl": "string",
- "oidcPermissionsClaim": "string",
- "oidcRequiredScps": [
- "string"
], - "oidcResetDiscoveryUrl": "string",
- "oidcScopes": [
- "string"
], - "oidcSystemAdminClaim": "string"
}Returns the currently authenticated user.
| accountDisabled | boolean | ||||||||||||||||||||||||||
| city | string | ||||||||||||||||||||||||||
| country | string | ||||||||||||||||||||||||||
| created | string <date-time> | ||||||||||||||||||||||||||
| displayName | string | ||||||||||||||||||||||||||
string | |||||||||||||||||||||||||||
Array of objects (Permissions) | |||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||
| systemAdmin | boolean (The system_admin permissions grants system level operations above
that of a single aerodrome:
- create, list, update, and delete aerodromes
- create, list, update, and delete users
- grant and revoke user permissions) | ||||||||||||||||||||||||||
| userId | string | ||||||||||||||||||||||||||
| viaReadOnlyToken | boolean Set if it's a read-only token user. | ||||||||||||||||||||||||||
{- "accountDisabled": true,
- "city": "string",
- "country": "string",
- "created": "2019-08-24T14:15:22Z",
- "displayName": "string",
- "email": "string",
- "permissions": [
- {
- "aerodromeAdmin": true,
- "aerodromeId": "string",
- "archiveRead": true,
- "archiveReadMetadata": true,
- "assessmentViewer": true,
- "customFormIds": [
- "string"
], - "liveWrite": true,
- "regionId": "EU",
- "reportSend": true,
- "revokeAccess": true,
- "standAssessment": true,
- "standCoordinator": true,
- "taskTypeIds": [
- 0
]
}
], - "systemAdmin": true,
- "userId": "string",
- "viaReadOnlyToken": true
}Returns a list of current API keys for the currently authenticated user. For security reasons the full API keys are not returned, instead a truncated display string is returned that can be shown to the user. The revocation ID is used to refer to a key in the revoke API key call.
Array of objects (AuthKey) | |||||||||||
Array
| |||||||||||
{- "keys": [
- {
- "expiresAt": "2019-08-24T14:15:22Z",
- "lastUsed": "2019-08-24T14:15:22Z",
- "revocationId": "string",
- "tokenDisplay": "string",
- "userId": "string"
}
]
}Creates an API key that can be used to authenticate as the currently authenticated user. The validity period is specified in days.
| validityDays | integer <int32> |
| key | string |
{- "validityDays": 0
}{- "key": "string"
}Set user data for the currently authenticated user. User data is a collection of key-value pairs, where the key is a string and the value is a slice of bytes (base64 encoded, in JSON). The server does not interpret the value and is only used to store it. The Airside Sync app uses user data to store user preferences and other settings.
| data.key required | string |
| value | string <byte> In JSON, this value is base64 encoded. |
{- "value": "string"
}{ }Get user data for the currently authenticated user. User data is a collection of key-value pairs, where the key is a string and the value is a slice of bytes (base64 encoded, in JSON). The server does not interpret the value and is only used to store it. The Airside Sync app uses user data to store user preferences and other settings.
| key required | string |
object (UserData) | |||||
| |||||
{- "data": {
- "key": "string",
- "value": "string"
}
}Returns a list of current read-only access keys for the currently authenticated user or all the keys related to the aerodrome for admins. For security reasons the full read-only access keys are not returned, instead a truncated display string is returned that can be shown to the user. The revocation ID is used to refer to a key in the revoke read-only access key call.
| aerodromeId | string |
Array of objects (AuthKey) | |||||||||||
Array
| |||||||||||
{- "keys": [
- {
- "expiresAt": "2019-08-24T14:15:22Z",
- "lastUsed": "2019-08-24T14:15:22Z",
- "revocationId": "string",
- "tokenDisplay": "string",
- "userId": "string"
}
]
}Revokes a read-only access key, by looking it up via its revocation ID.
| revocationId required | string |
| aerodromeId | string |
{ }Update the user permissions for one or more aerodromes and sets the display name. The special permission "RevokeAccess" can be used to remove permissions for an aerodrome entirely.
| userId required | string |
| displayName | string | ||||||||||||||||||||||||
| newPermissionsStyle | boolean | ||||||||||||||||||||||||
object (Permissions) | |||||||||||||||||||||||||
| |||||||||||||||||||||||||
| error | string | ||||||||||||||||||||
object (User) | |||||||||||||||||||||
| |||||||||||||||||||||
{- "displayName": "string",
- "newPermissionsStyle": true,
- "permissions": {
- "aerodromeAdmin": true,
- "aerodromeId": "string",
- "archiveRead": true,
- "archiveReadMetadata": true,
- "assessmentViewer": true,
- "customFormIds": [
- "string"
], - "liveWrite": true,
- "reportSend": true,
- "revokeAccess": true,
- "standAssessment": true,
- "standCoordinator": true,
- "taskTypeIds": [
- 0
]
}
}{- "error": "string",
- "user": {
- "accountDisabled": true,
- "city": "string",
- "country": "string",
- "created": "2019-08-24T14:15:22Z",
- "displayName": "string",
- "email": "string",
- "permissions": [
- {
- "aerodromeAdmin": true,
- "aerodromeId": "string",
- "archiveRead": true,
- "archiveReadMetadata": true,
- "assessmentViewer": true,
- "customFormIds": [
- "string"
], - "liveWrite": true,
- "regionId": "EU",
- "reportSend": true,
- "revokeAccess": true,
- "standAssessment": true,
- "standCoordinator": true,
- "taskTypeIds": [
- 0
]
}
], - "systemAdmin": true,
- "userId": "string",
- "viaReadOnlyToken": true
}
}The blob data is returned directly in the HTTP response body. The key to use is returned by other methods, such as GetSpokenATIS.
| key required | string.+ |
"string"This method requires system admin permissions.
Array of objects (AdminListAerodromesResponseAerodrome) | |||||||||||||||||
Array
| |||||||||||||||||
{- "aerodromes": [
- {
- "aerodromeId": "string",
- "created": "2019-08-24T14:15:22Z",
- "deployment": "UNKNOWN",
- "description": "string",
- "expires": "2019-08-24T14:15:22Z",
- "iata": "string",
- "metarId": "string",
- "updated": "2019-08-24T14:15:22Z"
}
]
}This method requires system admin permissions.
| aerodromeAixmIdentifier | string (AIXM identifier of the aerodrome in UUIDv4 format) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| aerodromeId | string (Aerodrome identifier (ICAO)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (AFTN configuration, for sending RCR via AFTN-over-TCP gateway) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (AFTN configuration, for sending SNOWTAM via AFTN-over-TCP gateway) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (AIXM Apron identifiers) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Apron name override, overrides the apron names in the reports only) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| aprons | Array of strings (Aprons, in the order they are presented to the user) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| atisEmailBodyTemplate | string (ATIS email body template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| atisEmailSubjectTemplate | string (ATIS email subject template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| awoswxSiteId | string (wx.awos.se site ID, for importing weather data) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (Customised report definitions) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| deployment | string (The aerodrome deployment type (production, trial, etc.)) Default: "UNKNOWN" Enum: "UNKNOWN" "PRODUCTION" "TESTING" "TRIAL" "DEVELOPMENT" "EXPIRED" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| description | string (Aerodrome description (name) for display purposes) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| distanceUnit | string (Unit for runway lengths, widths) Default: "DISTANCE_UNIT_UNSPECIFIED" Enum: "DISTANCE_UNIT_UNSPECIFIED" "METERS" "FEET" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (Aircraft stand configuration) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Configuration for outgoing email (requires system admin permissions)) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| emailImportAccount | string (Email account ID for importing sensor data sent via email) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| expires | string <date-time> (The license expiry for the aerodrome, or blank if the license does not expire) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| managedEmailDomains | Array of strings (Email domains where new users can be added) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Map of aerodrome elements) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| mapPointPrecision | integer <int32> (Map point precision in meters, for reducing map resolution to increase performance) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| metarId | string (METAR ID (ICAO), for importing weather data) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Overwrite sensor depth thresholds) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (NavCanada configuration, for sending SNOWTAM via NavCanada API) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| optionalFeatures | Array of strings (Enabled optional features (licensed modules)) Items Enum: "NO_OPTIONAL_FEATURE" "MOBILE_SENSORS_FEATURE" "ATIS_REPORTING_FEATURE" "DESKTOP_UI_FEATURE" "MEDIA_CAPTURE_FEATURE" "NAVBLUE_RUNWAYSENSE_FEATURE" "SEND_RCR_FEATURE" "FRICTION_REPORTING_FEATURE" "VIEWER_KEY_FEATURE" "ARCHIVE_VIEW_FEATURE" "STOCK_REMARKS_FEATURE" "API_FEATURE" "SEND_SMS_FEATURE" "SEND_FAX_FEATURE" "MAP_FEATURE" "RUNWAY_ASSESSMENT_FEATURE" "PIREP_FEATURE" "TASK_MANAGEMENT_FEATURE" "ANALYTICS_FEATURE" "SEND_NOTIFICATIONS_FEATURE" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Plausibility Analysis Thresholds) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Aerodrome preferences, editable with aerodrome admin permissions) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| rcrEmailBodyTemplate | string (RCR email body template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| rcrEmailSubjectTemplate | string (RCR email subject template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| regulatoryFramework | string (The used framework (ICAO_GRF / CANADA_RSC)) Default: "FRAMEWORK_UNSPECIFIED" Enum: "FRAMEWORK_UNSPECIFIED" "ICAO_GRF" "CANADA_RSC" "ICAO_GRF_NOMULTIDEPTH" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| runwaySenseId | string (NavBlue RunwaySense ID, for importing aircraft braking data) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (Runways, in the order they are presented to the user) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (RWS200 config) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| silentAprons | Array of strings (Silent aprons, i.e., those that can be reported but are not included in SNOWTAM) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| silentTaxiways | Array of strings (Silent taxiways, i.e., those that can be reported but are not included in SNOWTAM) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| snowtamAixmIdentifier | string (SNOWTAM event identifier in UUIDv4 format) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| snowtamEmailBodyTemplate | string (SNOWTAM email body template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| snowtamEmailSubjectTemplate | string (SNOWTAM email subject template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| taskEmailBodyTemplate | string (Task email notification body template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| taskEmailSubjectTemplate | string (Task email notification subject template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (AIXM Taxiway identifiers) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Taxiway name override, overrides the taxiway names in the reports only) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| taxiways | Array of strings (Taxiways, in the order they are presented to the user) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| userLimit | integer <int32> (User limit, where 0 means unlimited) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Aerodrome configuration) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{- "aerodromeAixmIdentifier": "string",
- "aerodromeId": "string",
- "aftnRcr": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "aftnSnowtam": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "apronAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "apronOverrides": {
- "property1": "string",
- "property2": "string"
}, - "aprons": [
- "string"
], - "atisEmailBodyTemplate": "string",
- "atisEmailSubjectTemplate": "string",
- "awoswxSiteId": "string",
- "customForms": [
- {
- "customFormId": "string",
- "description": "string",
- "fields": [
- {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "description": "string",
- "fieldId": "string",
- "htmlLabel": {
- "html": "string"
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "label": "string",
- "mapPointValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "moodSet": "MOOD_NEUTRAL",
- "moodUnset": "MOOD_NEUTRAL",
- "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "photosValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "photoIds": [
- "string"
]
}, - "required": true,
- "requiredWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "timeValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "visibleWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
], - "iconData": "string",
- "languageCode": "string",
- "persistent": true,
- "tileset": "TILESET_UNSPECIFIED",
- "title": "string"
}
], - "deployment": "UNKNOWN",
- "description": "string",
- "distanceUnit": "DISTANCE_UNIT_UNSPECIFIED",
- "dynamicFeatures": [
- {
- "dynamicFeatureConfigId": "string",
- "groupsConfig": {
- "fallbackId": "string",
- "groups": [
- {
- "id": "string",
- "name": "string"
}
], - "travelTime": {
- "property1": 0,
- "property2": 0
}
}, - "objects": [
- {
- "aixmUuid": "string",
- "groupId": "string",
- "id": "string",
- "size": "DF_SIZE_UNSPECIFIED"
}
], - "scheme": {
- "fields": [
- {
- "confirmCriteria": {
- "equalsString": [
- "string"
]
}, - "description": "string",
- "fieldId": "string",
- "filterCriteria": {
- "equalsString": [
- "string"
]
}, - "label": "string",
- "mood": {
- "fieldMood": {
- "property1": "DFF_MOOD_NEUTRAL",
- "property2": "DFF_MOOD_NEUTRAL"
}
}, - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}, - "property2": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}
}
}, - "privileged": true,
- "value": {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}
}, - "visibleCriteria": {
- "dependsOnTeamsField": true,
- "fieldCriteria": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
}
]
}, - "snowRemovalConfig": {
- "sizeDuration": [
- {
- "durationMinutes": 0,
- "size": "DF_SIZE_UNSPECIFIED"
}
]
}, - "teamsConfig": {
- "automaticFocusedView": true,
- "coordinatorTeams": [
- "string"
], - "coordinatorTeamsMinimalDetails": [
- "string"
], - "focusedViewFieldIds": [
- "string"
], - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "property2": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}
}
}, - "primarySortColumn": "string",
- "teams": [
- {
- "id": "string",
- "name": "string"
}
]
}, - "titleCoordinator": "string",
- "titlePrimary": "string",
- "titleShort": "string",
- "titleTeams": "string"
}
], - "email": {
- "aadClientId": "string",
- "aadClientSecret": "string",
- "aadScopes": [
- "string"
], - "aadTokenUrl": "string",
- "smtpFrom": "string",
- "smtpFromName": "string",
- "smtpHost": "string",
- "smtpPassword": "string",
- "smtpReplyTo": "string",
- "smtpReplyToName": "string",
- "smtpServers": [
- {
- "host": "string",
- "password": "string",
- "user": "string"
}
], - "smtpUser": "string"
}, - "emailImportAccount": "string",
- "expires": "2019-08-24T14:15:22Z",
- "managedEmailDomains": [
- "string"
], - "map": {
- "bounds": {
- "northEast": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "southWest": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "features": [
- {
- "geometries": [
- {
- "kind": "UNDEFINED",
- "points": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
], - "pointsSensorOverride": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
]
}
], - "ref": "string",
- "type": "string"
}
], - "markers": [
- {
- "kind": "FEATURE_UNDEFINED",
- "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "text": "string",
- "weight": 0.1
}
]
}, - "mapPointPrecision": 0,
- "metarId": "string",
- "mobileSensorThresholds": {
- "wetDepthThreshold": 0.1
}, - "navCanada": {
- "apiEndpoint": "string",
- "password": "string",
- "username": "string"
}, - "optionalFeatures": [
- "NO_OPTIONAL_FEATURE"
], - "plausibilityThresholds": {
- "depthThreshold": 0,
- "maxTemp": 0,
- "maxTempDeviation": 0,
- "rwyccThreshold": 0
}, - "preferences": {
- "allowedChangeReasons": [
- "CHANGE_REASON_TEMPERATURE"
], - "allowedChemicals": [
- "UNSPECIFIED_OR_OTHER"
], - "atisAudioFormat": "AUDIO_UNSPECIFIED",
- "atisRecipients": [
- "string"
], - "autoImportConditions": true,
- "customFormRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "disableClosedAprons": true,
- "disableClosedTaxiways": true,
- "disablePlausibilityAnalysis": true,
- "disableRwyccAdjustReason": true,
- "enforceRwyccUpDownGrades": true,
- "excludeFrictionFromReport": true,
- "mapTaxiwaysOnTop": true,
- "observationTimeOnPublish": "NO",
- "rcrPhotosCutoffHours": 0,
- "rcrRecipients": [
- "string"
], - "snowtamRecipients": [
- "string"
], - "stockPhrases": [
- "string"
], - "taskPreferences": {
- "taskRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "taskTypes": [
- {
- "description": "string",
- "name": "string"
}
]
}, - "withFriction": true,
- "withFrozenSand": true,
- "withIgnoreRunway": true,
- "withLandingDirection": true,
- "withSpwr": true,
- "withUnassessed": true,
- "withViewerKeys": true,
- "withoutSnow": true
}, - "rcrEmailBodyTemplate": "string",
- "rcrEmailSubjectTemplate": "string",
- "regulatoryFramework": "FRAMEWORK_UNSPECIFIED",
- "runwaySenseId": "string",
- "runways": [
- {
- "leftSide": "CARDINAL_UNSPECIFIED",
- "length": 0,
- "localTaxiways": [
- "string"
], - "rightSide": "CARDINAL_UNSPECIFIED",
- "runwayAixmIdentifier": "string",
- "runwayId": "string",
- "width": 0
}
], - "rws200": [
- {
- "address": "string",
- "password": "string",
- "runwayOverride": "string",
- "stationId": "string",
- "username": "string"
}
], - "silentAprons": [
- "string"
], - "silentTaxiways": [
- "string"
], - "snowtamAixmIdentifier": "string",
- "snowtamEmailBodyTemplate": "string",
- "snowtamEmailSubjectTemplate": "string",
- "taskEmailBodyTemplate": "string",
- "taskEmailSubjectTemplate": "string",
- "taxiwayAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "taxiwayOverrides": {
- "property1": "string",
- "property2": "string"
}, - "taxiways": [
- "string"
], - "userLimit": 0
}{- "config": {
- "aerodromeAixmIdentifier": "string",
- "aerodromeId": "string",
- "aftnRcr": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "aftnSnowtam": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "apronAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "apronOverrides": {
- "property1": "string",
- "property2": "string"
}, - "aprons": [
- "string"
], - "atisEmailBodyTemplate": "string",
- "atisEmailSubjectTemplate": "string",
- "awoswxSiteId": "string",
- "created": "2019-08-24T14:15:22Z",
- "customForms": [
- {
- "customFormId": "string",
- "description": "string",
- "fields": [
- {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "description": "string",
- "fieldId": "string",
- "htmlLabel": {
- "html": "string"
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "label": "string",
- "mapPointValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "moodSet": "MOOD_NEUTRAL",
- "moodUnset": "MOOD_NEUTRAL",
- "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "photosValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "photoIds": [
- "string"
]
}, - "required": true,
- "requiredWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "timeValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "visibleWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
], - "iconData": "string",
- "languageCode": "string",
- "persistent": true,
- "tileset": "TILESET_UNSPECIFIED",
- "title": "string"
}
], - "deployment": "UNKNOWN",
- "description": "string",
- "distanceUnit": "DISTANCE_UNIT_UNSPECIFIED",
- "dynamicFeatures": [
- {
- "dynamicFeatureConfigId": "string",
- "groupsConfig": {
- "fallbackId": "string",
- "groups": [
- {
- "id": "string",
- "name": "string"
}
], - "travelTime": {
- "property1": 0,
- "property2": 0
}
}, - "objects": [
- {
- "aixmUuid": "string",
- "groupId": "string",
- "id": "string",
- "size": "DF_SIZE_UNSPECIFIED"
}
], - "scheme": {
- "fields": [
- {
- "confirmCriteria": {
- "equalsString": [
- "string"
]
}, - "description": "string",
- "fieldId": "string",
- "filterCriteria": {
- "equalsString": [
- "string"
]
}, - "label": "string",
- "mood": {
- "fieldMood": {
- "property1": "DFF_MOOD_NEUTRAL",
- "property2": "DFF_MOOD_NEUTRAL"
}
}, - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": null,
- "setFieldToValue": [ ],
- "userSetField": null
}, - "property2": {
- "clearTeamAssignment": null,
- "setFieldToValue": [ ],
- "userSetField": null
}
}
}, - "privileged": true,
- "value": {
- "boolValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- null
], - "maxSelectedItems": 0,
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "selection": [
- null
]
}, - "stringValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": "string"
}
}, - "visibleCriteria": {
- "dependsOnTeamsField": true,
- "fieldCriteria": {
- "equalsString": [
- null
], - "isSet": true,
- "notEqualsString": [
- null
], - "otherFieldId": "string"
}
}
}
]
}, - "snowRemovalConfig": {
- "sizeDuration": [
- {
- "durationMinutes": 0,
- "size": "DF_SIZE_UNSPECIFIED"
}
]
}, - "teamsConfig": {
- "automaticFocusedView": true,
- "coordinatorTeams": [
- "string"
], - "coordinatorTeamsMinimalDetails": [
- "string"
], - "focusedViewFieldIds": [
- "string"
], - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}, - "property2": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}
}
}, - "primarySortColumn": "string",
- "teams": [
- {
- "id": "string",
- "name": "string"
}
]
}, - "titleCoordinator": "string",
- "titlePrimary": "string",
- "titleShort": "string",
- "titleTeams": "string"
}
], - "email": {
- "aadClientId": "string",
- "aadClientSecret": "string",
- "aadScopes": [
- "string"
], - "aadTokenUrl": "string",
- "smtpFrom": "string",
- "smtpFromName": "string",
- "smtpHost": "string",
- "smtpPassword": "string",
- "smtpReplyTo": "string",
- "smtpReplyToName": "string",
- "smtpServers": [
- {
- "host": "string",
- "password": "string",
- "user": "string"
}
], - "smtpUser": "string"
}, - "emailImportAccount": "string",
- "expires": "2019-08-24T14:15:22Z",
- "iata": "string",
- "managedEmailDomains": [
- "string"
], - "map": {
- "bounds": {
- "northEast": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "southWest": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "features": [
- {
- "geometries": [
- {
- "kind": "UNDEFINED",
- "points": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
], - "pointsSensorOverride": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
]
}
], - "ref": "string",
- "type": "string"
}
], - "markers": [
- {
- "kind": "FEATURE_UNDEFINED",
- "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "text": "string",
- "weight": 0.1
}
]
}, - "mapPointPrecision": 0,
- "metarId": "string",
- "mobileSensorThresholds": {
- "wetDepthThreshold": 0.1
}, - "navCanada": {
- "apiEndpoint": "string",
- "password": "string",
- "username": "string"
}, - "optionalFeatures": [
- "NO_OPTIONAL_FEATURE"
], - "plausibilityThresholds": {
- "depthThreshold": 0,
- "maxTemp": 0,
- "maxTempDeviation": 0,
- "rwyccThreshold": 0
}, - "preferences": {
- "allowedChangeReasons": [
- "CHANGE_REASON_TEMPERATURE"
], - "allowedChemicals": [
- "UNSPECIFIED_OR_OTHER"
], - "atisAudioFormat": "AUDIO_UNSPECIFIED",
- "atisRecipients": [
- "string"
], - "autoImportConditions": true,
- "customFormRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "disableClosedAprons": true,
- "disableClosedTaxiways": true,
- "disablePlausibilityAnalysis": true,
- "disableRwyccAdjustReason": true,
- "enforceRwyccUpDownGrades": true,
- "excludeFrictionFromReport": true,
- "mapTaxiwaysOnTop": true,
- "observationTimeOnPublish": "NO",
- "rcrPhotosCutoffHours": 0,
- "rcrRecipients": [
- "string"
], - "snowtamRecipients": [
- "string"
], - "stockPhrases": [
- "string"
], - "taskPreferences": {
- "taskRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "taskTypes": [
- {
- "description": "string",
- "disabled": true,
- "id": 0,
- "name": "string"
}
]
}, - "withFriction": true,
- "withFrozenSand": true,
- "withIgnoreRunway": true,
- "withLandingDirection": true,
- "withSpwr": true,
- "withUnassessed": true,
- "withViewerKeys": true,
- "withoutSnow": true
}, - "rcrEmailBodyTemplate": "string",
- "rcrEmailSubjectTemplate": "string",
- "regulatoryFramework": "FRAMEWORK_UNSPECIFIED",
- "runwaySenseId": "string",
- "runways": [
- {
- "leftSide": "CARDINAL_UNSPECIFIED",
- "length": 0,
- "localTaxiways": [
- "string"
], - "rightSide": "CARDINAL_UNSPECIFIED",
- "runwayAixmIdentifier": "string",
- "runwayId": "string",
- "width": 0
}
], - "rws200": [
- {
- "address": "string",
- "password": "string",
- "runwayOverride": "string",
- "stationId": "string",
- "username": "string"
}
], - "silentAprons": [
- "string"
], - "silentTaxiways": [
- "string"
], - "snowtamAixmIdentifier": "string",
- "snowtamEmailBodyTemplate": "string",
- "snowtamEmailSubjectTemplate": "string",
- "taskEmailBodyTemplate": "string",
- "taskEmailSubjectTemplate": "string",
- "taxiwayAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "taxiwayOverrides": {
- "property1": "string",
- "property2": "string"
}, - "taxiways": [
- "string"
], - "updated": "2019-08-24T14:15:22Z",
- "userLimit": 0
}
}| description | string (Description of the trial aerodrome) | ||||
| featureAdditions | Array of strings (Optional: Additional features (e.g. PIREP, MOBILE_SENSORS, ...)) Items Enum: "NO_OPTIONAL_FEATURE" "MOBILE_SENSORS_FEATURE" "ATIS_REPORTING_FEATURE" "DESKTOP_UI_FEATURE" "MEDIA_CAPTURE_FEATURE" "NAVBLUE_RUNWAYSENSE_FEATURE" "SEND_RCR_FEATURE" "FRICTION_REPORTING_FEATURE" "VIEWER_KEY_FEATURE" "ARCHIVE_VIEW_FEATURE" "STOCK_REMARKS_FEATURE" "API_FEATURE" "SEND_SMS_FEATURE" "SEND_FAX_FEATURE" "MAP_FEATURE" "RUNWAY_ASSESSMENT_FEATURE" "PIREP_FEATURE" "TASK_MANAGEMENT_FEATURE" "ANALYTICS_FEATURE" "SEND_NOTIFICATIONS_FEATURE" | ||||
| featureOverrides | Array of strings (Optional: Completely overrides features, using "premium" as default) Items Enum: "NO_OPTIONAL_FEATURE" "MOBILE_SENSORS_FEATURE" "ATIS_REPORTING_FEATURE" "DESKTOP_UI_FEATURE" "MEDIA_CAPTURE_FEATURE" "NAVBLUE_RUNWAYSENSE_FEATURE" "SEND_RCR_FEATURE" "FRICTION_REPORTING_FEATURE" "VIEWER_KEY_FEATURE" "ARCHIVE_VIEW_FEATURE" "STOCK_REMARKS_FEATURE" "API_FEATURE" "SEND_SMS_FEATURE" "SEND_FAX_FEATURE" "MAP_FEATURE" "RUNWAY_ASSESSMENT_FEATURE" "PIREP_FEATURE" "TASK_MANAGEMENT_FEATURE" "ANALYTICS_FEATURE" "SEND_NOTIFICATIONS_FEATURE" | ||||
| noCustomisedReports | boolean Do not include customised reports, the default templates include them. | ||||
| preferredAerodromeId | string (Optional: the aerodrome id the trial environment gets. Generated if missing) | ||||
object (Initial admin) | |||||
| |||||
| realIcao | string (Optional: using a default if missing) | ||||
| size | string (Defaults to SMALL_MMX) Default: "TRIAL_UNKNOWN" Enum: "TRIAL_UNKNOWN" "TRIAL_SMALL_MMX" "TRIAL_LARGE_DEMO" "TRIAL_CUSTOM" | ||||
| templateFromAerodromeId | string (Optional: creates a template config based on the given aerodrome id) | ||||
| addedUser | boolean (True if the initial admin was added succesfully) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (The complete trial config) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| sentWelcomeEmail | boolean (True if a welcome mail was sent to the added admin) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{- "description": "string",
- "featureAdditions": [
- "NO_OPTIONAL_FEATURE"
], - "featureOverrides": [
- "NO_OPTIONAL_FEATURE"
], - "noCustomisedReports": true,
- "preferredAerodromeId": "string",
- "primaryContact": {
- "displayName": "string",
- "email": "string"
}, - "realIcao": "string",
- "size": "TRIAL_UNKNOWN",
- "templateFromAerodromeId": "string"
}{- "addedUser": true,
- "config": {
- "aerodromeAixmIdentifier": "string",
- "aerodromeId": "string",
- "aftnRcr": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "aftnSnowtam": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "apronAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "apronOverrides": {
- "property1": "string",
- "property2": "string"
}, - "aprons": [
- "string"
], - "atisEmailBodyTemplate": "string",
- "atisEmailSubjectTemplate": "string",
- "awoswxSiteId": "string",
- "created": "2019-08-24T14:15:22Z",
- "customForms": [
- {
- "customFormId": "string",
- "description": "string",
- "fields": [
- {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "description": "string",
- "fieldId": "string",
- "htmlLabel": {
- "html": "string"
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "label": "string",
- "mapPointValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "moodSet": "MOOD_NEUTRAL",
- "moodUnset": "MOOD_NEUTRAL",
- "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "photosValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "photoIds": [
- "string"
]
}, - "required": true,
- "requiredWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "timeValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "visibleWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
], - "iconData": "string",
- "languageCode": "string",
- "persistent": true,
- "tileset": "TILESET_UNSPECIFIED",
- "title": "string"
}
], - "deployment": "UNKNOWN",
- "description": "string",
- "distanceUnit": "DISTANCE_UNIT_UNSPECIFIED",
- "dynamicFeatures": [
- {
- "dynamicFeatureConfigId": "string",
- "groupsConfig": {
- "fallbackId": "string",
- "groups": [
- {
- "id": "string",
- "name": "string"
}
], - "travelTime": {
- "property1": 0,
- "property2": 0
}
}, - "objects": [
- {
- "aixmUuid": "string",
- "groupId": "string",
- "id": "string",
- "size": "DF_SIZE_UNSPECIFIED"
}
], - "scheme": {
- "fields": [
- {
- "confirmCriteria": {
- "equalsString": [
- "string"
]
}, - "description": "string",
- "fieldId": "string",
- "filterCriteria": {
- "equalsString": [
- "string"
]
}, - "label": "string",
- "mood": {
- "fieldMood": {
- "property1": "DFF_MOOD_NEUTRAL",
- "property2": "DFF_MOOD_NEUTRAL"
}
}, - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": null,
- "setFieldToValue": [ ],
- "userSetField": null
}, - "property2": {
- "clearTeamAssignment": null,
- "setFieldToValue": [ ],
- "userSetField": null
}
}
}, - "privileged": true,
- "value": {
- "boolValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- null
], - "maxSelectedItems": 0,
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "selection": [
- null
]
}, - "stringValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": "string"
}
}, - "visibleCriteria": {
- "dependsOnTeamsField": true,
- "fieldCriteria": {
- "equalsString": [
- null
], - "isSet": true,
- "notEqualsString": [
- null
], - "otherFieldId": "string"
}
}
}
]
}, - "snowRemovalConfig": {
- "sizeDuration": [
- {
- "durationMinutes": 0,
- "size": "DF_SIZE_UNSPECIFIED"
}
]
}, - "teamsConfig": {
- "automaticFocusedView": true,
- "coordinatorTeams": [
- "string"
], - "coordinatorTeamsMinimalDetails": [
- "string"
], - "focusedViewFieldIds": [
- "string"
], - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}, - "property2": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}
}
}, - "primarySortColumn": "string",
- "teams": [
- {
- "id": "string",
- "name": "string"
}
]
}, - "titleCoordinator": "string",
- "titlePrimary": "string",
- "titleShort": "string",
- "titleTeams": "string"
}
], - "email": {
- "aadClientId": "string",
- "aadClientSecret": "string",
- "aadScopes": [
- "string"
], - "aadTokenUrl": "string",
- "smtpFrom": "string",
- "smtpFromName": "string",
- "smtpHost": "string",
- "smtpPassword": "string",
- "smtpReplyTo": "string",
- "smtpReplyToName": "string",
- "smtpServers": [
- {
- "host": "string",
- "password": "string",
- "user": "string"
}
], - "smtpUser": "string"
}, - "emailImportAccount": "string",
- "expires": "2019-08-24T14:15:22Z",
- "iata": "string",
- "managedEmailDomains": [
- "string"
], - "map": {
- "bounds": {
- "northEast": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "southWest": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "features": [
- {
- "geometries": [
- {
- "kind": "UNDEFINED",
- "points": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
], - "pointsSensorOverride": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
]
}
], - "ref": "string",
- "type": "string"
}
], - "markers": [
- {
- "kind": "FEATURE_UNDEFINED",
- "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "text": "string",
- "weight": 0.1
}
]
}, - "mapPointPrecision": 0,
- "metarId": "string",
- "mobileSensorThresholds": {
- "wetDepthThreshold": 0.1
}, - "navCanada": {
- "apiEndpoint": "string",
- "password": "string",
- "username": "string"
}, - "optionalFeatures": [
- "NO_OPTIONAL_FEATURE"
], - "plausibilityThresholds": {
- "depthThreshold": 0,
- "maxTemp": 0,
- "maxTempDeviation": 0,
- "rwyccThreshold": 0
}, - "preferences": {
- "allowedChangeReasons": [
- "CHANGE_REASON_TEMPERATURE"
], - "allowedChemicals": [
- "UNSPECIFIED_OR_OTHER"
], - "atisAudioFormat": "AUDIO_UNSPECIFIED",
- "atisRecipients": [
- "string"
], - "autoImportConditions": true,
- "customFormRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "disableClosedAprons": true,
- "disableClosedTaxiways": true,
- "disablePlausibilityAnalysis": true,
- "disableRwyccAdjustReason": true,
- "enforceRwyccUpDownGrades": true,
- "excludeFrictionFromReport": true,
- "mapTaxiwaysOnTop": true,
- "observationTimeOnPublish": "NO",
- "rcrPhotosCutoffHours": 0,
- "rcrRecipients": [
- "string"
], - "snowtamRecipients": [
- "string"
], - "stockPhrases": [
- "string"
], - "taskPreferences": {
- "taskRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "taskTypes": [
- {
- "description": "string",
- "disabled": true,
- "id": 0,
- "name": "string"
}
]
}, - "withFriction": true,
- "withFrozenSand": true,
- "withIgnoreRunway": true,
- "withLandingDirection": true,
- "withSpwr": true,
- "withUnassessed": true,
- "withViewerKeys": true,
- "withoutSnow": true
}, - "rcrEmailBodyTemplate": "string",
- "rcrEmailSubjectTemplate": "string",
- "regulatoryFramework": "FRAMEWORK_UNSPECIFIED",
- "runwaySenseId": "string",
- "runways": [
- {
- "leftSide": "CARDINAL_UNSPECIFIED",
- "length": 0,
- "localTaxiways": [
- "string"
], - "rightSide": "CARDINAL_UNSPECIFIED",
- "runwayAixmIdentifier": "string",
- "runwayId": "string",
- "width": 0
}
], - "rws200": [
- {
- "address": "string",
- "password": "string",
- "runwayOverride": "string",
- "stationId": "string",
- "username": "string"
}
], - "silentAprons": [
- "string"
], - "silentTaxiways": [
- "string"
], - "snowtamAixmIdentifier": "string",
- "snowtamEmailBodyTemplate": "string",
- "snowtamEmailSubjectTemplate": "string",
- "taskEmailBodyTemplate": "string",
- "taskEmailSubjectTemplate": "string",
- "taxiwayAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "taxiwayOverrides": {
- "property1": "string",
- "property2": "string"
}, - "taxiways": [
- "string"
], - "updated": "2019-08-24T14:15:22Z",
- "userLimit": 0
}, - "sentWelcomeEmail": true
}Returns the configuration for the specified aerodrome, including map data.
| aerodromeId required | string |
object (Aerodrome configuration) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{- "config": {
- "aerodromeAixmIdentifier": "string",
- "aerodromeId": "string",
- "aftnRcr": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "aftnSnowtam": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "apronAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "apronOverrides": {
- "property1": "string",
- "property2": "string"
}, - "aprons": [
- "string"
], - "atisEmailBodyTemplate": "string",
- "atisEmailSubjectTemplate": "string",
- "awoswxSiteId": "string",
- "created": "2019-08-24T14:15:22Z",
- "customForms": [
- {
- "customFormId": "string",
- "description": "string",
- "fields": [
- {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "description": "string",
- "fieldId": "string",
- "htmlLabel": {
- "html": "string"
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "label": "string",
- "mapPointValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "moodSet": "MOOD_NEUTRAL",
- "moodUnset": "MOOD_NEUTRAL",
- "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "photosValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "photoIds": [
- "string"
]
}, - "required": true,
- "requiredWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "timeValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "visibleWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
], - "iconData": "string",
- "languageCode": "string",
- "persistent": true,
- "tileset": "TILESET_UNSPECIFIED",
- "title": "string"
}
], - "deployment": "UNKNOWN",
- "description": "string",
- "distanceUnit": "DISTANCE_UNIT_UNSPECIFIED",
- "dynamicFeatures": [
- {
- "dynamicFeatureConfigId": "string",
- "groupsConfig": {
- "fallbackId": "string",
- "groups": [
- {
- "id": "string",
- "name": "string"
}
], - "travelTime": {
- "property1": 0,
- "property2": 0
}
}, - "objects": [
- {
- "aixmUuid": "string",
- "groupId": "string",
- "id": "string",
- "size": "DF_SIZE_UNSPECIFIED"
}
], - "scheme": {
- "fields": [
- {
- "confirmCriteria": {
- "equalsString": [
- "string"
]
}, - "description": "string",
- "fieldId": "string",
- "filterCriteria": {
- "equalsString": [
- "string"
]
}, - "label": "string",
- "mood": {
- "fieldMood": {
- "property1": "DFF_MOOD_NEUTRAL",
- "property2": "DFF_MOOD_NEUTRAL"
}
}, - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": null,
- "setFieldToValue": [ ],
- "userSetField": null
}, - "property2": {
- "clearTeamAssignment": null,
- "setFieldToValue": [ ],
- "userSetField": null
}
}
}, - "privileged": true,
- "value": {
- "boolValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- null
], - "maxSelectedItems": 0,
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "selection": [
- null
]
}, - "stringValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": "string"
}
}, - "visibleCriteria": {
- "dependsOnTeamsField": true,
- "fieldCriteria": {
- "equalsString": [
- null
], - "isSet": true,
- "notEqualsString": [
- null
], - "otherFieldId": "string"
}
}
}
]
}, - "snowRemovalConfig": {
- "sizeDuration": [
- {
- "durationMinutes": 0,
- "size": "DF_SIZE_UNSPECIFIED"
}
]
}, - "teamsConfig": {
- "automaticFocusedView": true,
- "coordinatorTeams": [
- "string"
], - "coordinatorTeamsMinimalDetails": [
- "string"
], - "focusedViewFieldIds": [
- "string"
], - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}, - "property2": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}
}
}, - "primarySortColumn": "string",
- "teams": [
- {
- "id": "string",
- "name": "string"
}
]
}, - "titleCoordinator": "string",
- "titlePrimary": "string",
- "titleShort": "string",
- "titleTeams": "string"
}
], - "email": {
- "aadClientId": "string",
- "aadClientSecret": "string",
- "aadScopes": [
- "string"
], - "aadTokenUrl": "string",
- "smtpFrom": "string",
- "smtpFromName": "string",
- "smtpHost": "string",
- "smtpPassword": "string",
- "smtpReplyTo": "string",
- "smtpReplyToName": "string",
- "smtpServers": [
- {
- "host": "string",
- "password": "string",
- "user": "string"
}
], - "smtpUser": "string"
}, - "emailImportAccount": "string",
- "expires": "2019-08-24T14:15:22Z",
- "iata": "string",
- "managedEmailDomains": [
- "string"
], - "map": {
- "bounds": {
- "northEast": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "southWest": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "features": [
- {
- "geometries": [
- {
- "kind": "UNDEFINED",
- "points": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
], - "pointsSensorOverride": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
]
}
], - "ref": "string",
- "type": "string"
}
], - "markers": [
- {
- "kind": "FEATURE_UNDEFINED",
- "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "text": "string",
- "weight": 0.1
}
]
}, - "mapPointPrecision": 0,
- "metarId": "string",
- "mobileSensorThresholds": {
- "wetDepthThreshold": 0.1
}, - "navCanada": {
- "apiEndpoint": "string",
- "password": "string",
- "username": "string"
}, - "optionalFeatures": [
- "NO_OPTIONAL_FEATURE"
], - "plausibilityThresholds": {
- "depthThreshold": 0,
- "maxTemp": 0,
- "maxTempDeviation": 0,
- "rwyccThreshold": 0
}, - "preferences": {
- "allowedChangeReasons": [
- "CHANGE_REASON_TEMPERATURE"
], - "allowedChemicals": [
- "UNSPECIFIED_OR_OTHER"
], - "atisAudioFormat": "AUDIO_UNSPECIFIED",
- "atisRecipients": [
- "string"
], - "autoImportConditions": true,
- "customFormRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "disableClosedAprons": true,
- "disableClosedTaxiways": true,
- "disablePlausibilityAnalysis": true,
- "disableRwyccAdjustReason": true,
- "enforceRwyccUpDownGrades": true,
- "excludeFrictionFromReport": true,
- "mapTaxiwaysOnTop": true,
- "observationTimeOnPublish": "NO",
- "rcrPhotosCutoffHours": 0,
- "rcrRecipients": [
- "string"
], - "snowtamRecipients": [
- "string"
], - "stockPhrases": [
- "string"
], - "taskPreferences": {
- "taskRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "taskTypes": [
- {
- "description": "string",
- "disabled": true,
- "id": 0,
- "name": "string"
}
]
}, - "withFriction": true,
- "withFrozenSand": true,
- "withIgnoreRunway": true,
- "withLandingDirection": true,
- "withSpwr": true,
- "withUnassessed": true,
- "withViewerKeys": true,
- "withoutSnow": true
}, - "rcrEmailBodyTemplate": "string",
- "rcrEmailSubjectTemplate": "string",
- "regulatoryFramework": "FRAMEWORK_UNSPECIFIED",
- "runwaySenseId": "string",
- "runways": [
- {
- "leftSide": "CARDINAL_UNSPECIFIED",
- "length": 0,
- "localTaxiways": [
- "string"
], - "rightSide": "CARDINAL_UNSPECIFIED",
- "runwayAixmIdentifier": "string",
- "runwayId": "string",
- "width": 0
}
], - "rws200": [
- {
- "address": "string",
- "password": "string",
- "runwayOverride": "string",
- "stationId": "string",
- "username": "string"
}
], - "silentAprons": [
- "string"
], - "silentTaxiways": [
- "string"
], - "snowtamAixmIdentifier": "string",
- "snowtamEmailBodyTemplate": "string",
- "snowtamEmailSubjectTemplate": "string",
- "taskEmailBodyTemplate": "string",
- "taskEmailSubjectTemplate": "string",
- "taxiwayAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "taxiwayOverrides": {
- "property1": "string",
- "property2": "string"
}, - "taxiways": [
- "string"
], - "updated": "2019-08-24T14:15:22Z",
- "userLimit": 0
}
}Set optional preferences for the specified aerodrome. Requires aerodrome admin permissions.
| aerodromeId required | string |
object (AerodromePreferences) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
{- "preferences": {
- "allowedChangeReasons": [
- "CHANGE_REASON_TEMPERATURE"
], - "allowedChemicals": [
- "UNSPECIFIED_OR_OTHER"
], - "atisAudioFormat": "AUDIO_UNSPECIFIED",
- "atisRecipients": [
- "string"
], - "autoImportConditions": true,
- "customFormRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "disableClosedAprons": true,
- "disableClosedTaxiways": true,
- "disablePlausibilityAnalysis": true,
- "disableRwyccAdjustReason": true,
- "enforceRwyccUpDownGrades": true,
- "excludeFrictionFromReport": true,
- "mapTaxiwaysOnTop": true,
- "observationTimeOnPublish": "NO",
- "rcrPhotosCutoffHours": 0,
- "rcrRecipients": [
- "string"
], - "snowtamRecipients": [
- "string"
], - "stockPhrases": [
- "string"
], - "taskPreferences": {
- "taskRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "taskTypes": [
- {
- "description": "string",
- "name": "string"
}
]
}, - "withFriction": true,
- "withFrozenSand": true,
- "withIgnoreRunway": true,
- "withLandingDirection": true,
- "withSpwr": true,
- "withUnassessed": true,
- "withViewerKeys": true,
- "withoutSnow": true
}
}{ }Add or remove recipients for a specific task type
| aerodromeId required | string |
| id required | integer <int32> |
[- "string"
]{ }Create a new task type or updates an existing task type if an id is supplied. Requires aerodrome admin permissions.
| aerodromeId required | string |
| typeId required | integer <int32> |
| typeDescription | string |
"string"{ }This method requires system admin permissions.
| config.aerodromeId required | string Aerodrome identifier (ICAO) |
Aerodrome configuration
| aerodromeAixmIdentifier | string (AIXM identifier of the aerodrome in UUIDv4 format) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (AFTN configuration, for sending RCR via AFTN-over-TCP gateway) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (AFTN configuration, for sending SNOWTAM via AFTN-over-TCP gateway) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (AIXM Apron identifiers) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Apron name override, overrides the apron names in the reports only) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| aprons | Array of strings (Aprons, in the order they are presented to the user) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| atisEmailBodyTemplate | string (ATIS email body template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| atisEmailSubjectTemplate | string (ATIS email subject template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| awoswxSiteId | string (wx.awos.se site ID, for importing weather data) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (Customised report definitions) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| deployment | string (The aerodrome deployment type (production, trial, etc.)) Default: "UNKNOWN" Enum: "UNKNOWN" "PRODUCTION" "TESTING" "TRIAL" "DEVELOPMENT" "EXPIRED" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| description | string (Aerodrome description (name) for display purposes) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| distanceUnit | string (Unit for runway lengths, widths) Default: "DISTANCE_UNIT_UNSPECIFIED" Enum: "DISTANCE_UNIT_UNSPECIFIED" "METERS" "FEET" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (Aircraft stand configuration) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Configuration for outgoing email (requires system admin permissions)) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| emailImportAccount | string (Email account ID for importing sensor data sent via email) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| expires | string <date-time> (The license expiry for the aerodrome, or blank if the license does not expire) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| managedEmailDomains | Array of strings (Email domains where new users can be added) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Map of aerodrome elements) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| mapPointPrecision | integer <int32> (Map point precision in meters, for reducing map resolution to increase performance) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| metarId | string (METAR ID (ICAO), for importing weather data) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Overwrite sensor depth thresholds) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (NavCanada configuration, for sending SNOWTAM via NavCanada API) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| optionalFeatures | Array of strings (Enabled optional features (licensed modules)) Items Enum: "NO_OPTIONAL_FEATURE" "MOBILE_SENSORS_FEATURE" "ATIS_REPORTING_FEATURE" "DESKTOP_UI_FEATURE" "MEDIA_CAPTURE_FEATURE" "NAVBLUE_RUNWAYSENSE_FEATURE" "SEND_RCR_FEATURE" "FRICTION_REPORTING_FEATURE" "VIEWER_KEY_FEATURE" "ARCHIVE_VIEW_FEATURE" "STOCK_REMARKS_FEATURE" "API_FEATURE" "SEND_SMS_FEATURE" "SEND_FAX_FEATURE" "MAP_FEATURE" "RUNWAY_ASSESSMENT_FEATURE" "PIREP_FEATURE" "TASK_MANAGEMENT_FEATURE" "ANALYTICS_FEATURE" "SEND_NOTIFICATIONS_FEATURE" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Plausibility Analysis Thresholds) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Aerodrome preferences, editable with aerodrome admin permissions) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| rcrEmailBodyTemplate | string (RCR email body template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| rcrEmailSubjectTemplate | string (RCR email subject template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| regulatoryFramework | string (The used framework (ICAO_GRF / CANADA_RSC)) Default: "FRAMEWORK_UNSPECIFIED" Enum: "FRAMEWORK_UNSPECIFIED" "ICAO_GRF" "CANADA_RSC" "ICAO_GRF_NOMULTIDEPTH" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| runwaySenseId | string (NavBlue RunwaySense ID, for importing aircraft braking data) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (Runways, in the order they are presented to the user) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (RWS200 config) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| silentAprons | Array of strings (Silent aprons, i.e., those that can be reported but are not included in SNOWTAM) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| silentTaxiways | Array of strings (Silent taxiways, i.e., those that can be reported but are not included in SNOWTAM) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| snowtamAixmIdentifier | string (SNOWTAM event identifier in UUIDv4 format) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| snowtamEmailBodyTemplate | string (SNOWTAM email body template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| snowtamEmailSubjectTemplate | string (SNOWTAM email subject template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| taskEmailBodyTemplate | string (Task email notification body template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| taskEmailSubjectTemplate | string (Task email notification subject template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (AIXM Taxiway identifiers) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Taxiway name override, overrides the taxiway names in the reports only) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| taxiways | Array of strings (Taxiways, in the order they are presented to the user) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| userLimit | integer <int32> (User limit, where 0 means unlimited) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Aerodrome configuration) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{- "aerodromeAixmIdentifier": "string",
- "aftnRcr": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "aftnSnowtam": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "apronAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "apronOverrides": {
- "property1": "string",
- "property2": "string"
}, - "aprons": [
- "string"
], - "atisEmailBodyTemplate": "string",
- "atisEmailSubjectTemplate": "string",
- "awoswxSiteId": "string",
- "customForms": [
- {
- "customFormId": "string",
- "description": "string",
- "fields": [
- {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "description": "string",
- "fieldId": "string",
- "htmlLabel": {
- "html": "string"
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "label": "string",
- "mapPointValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "moodSet": "MOOD_NEUTRAL",
- "moodUnset": "MOOD_NEUTRAL",
- "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "photosValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "photoIds": [
- "string"
]
}, - "required": true,
- "requiredWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "timeValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "visibleWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
], - "iconData": "string",
- "languageCode": "string",
- "persistent": true,
- "tileset": "TILESET_UNSPECIFIED",
- "title": "string"
}
], - "deployment": "UNKNOWN",
- "description": "string",
- "distanceUnit": "DISTANCE_UNIT_UNSPECIFIED",
- "dynamicFeatures": [
- {
- "dynamicFeatureConfigId": "string",
- "groupsConfig": {
- "fallbackId": "string",
- "groups": [
- {
- "id": "string",
- "name": "string"
}
], - "travelTime": {
- "property1": 0,
- "property2": 0
}
}, - "objects": [
- {
- "aixmUuid": "string",
- "groupId": "string",
- "id": "string",
- "size": "DF_SIZE_UNSPECIFIED"
}
], - "scheme": {
- "fields": [
- {
- "confirmCriteria": {
- "equalsString": [
- "string"
]
}, - "description": "string",
- "fieldId": "string",
- "filterCriteria": {
- "equalsString": [
- "string"
]
}, - "label": "string",
- "mood": {
- "fieldMood": {
- "property1": "DFF_MOOD_NEUTRAL",
- "property2": "DFF_MOOD_NEUTRAL"
}
}, - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}, - "property2": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}
}
}, - "privileged": true,
- "value": {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}
}, - "visibleCriteria": {
- "dependsOnTeamsField": true,
- "fieldCriteria": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
}
]
}, - "snowRemovalConfig": {
- "sizeDuration": [
- {
- "durationMinutes": 0,
- "size": "DF_SIZE_UNSPECIFIED"
}
]
}, - "teamsConfig": {
- "automaticFocusedView": true,
- "coordinatorTeams": [
- "string"
], - "coordinatorTeamsMinimalDetails": [
- "string"
], - "focusedViewFieldIds": [
- "string"
], - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "property2": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}
}
}, - "primarySortColumn": "string",
- "teams": [
- {
- "id": "string",
- "name": "string"
}
]
}, - "titleCoordinator": "string",
- "titlePrimary": "string",
- "titleShort": "string",
- "titleTeams": "string"
}
], - "email": {
- "aadClientId": "string",
- "aadClientSecret": "string",
- "aadScopes": [
- "string"
], - "aadTokenUrl": "string",
- "smtpFrom": "string",
- "smtpFromName": "string",
- "smtpHost": "string",
- "smtpPassword": "string",
- "smtpReplyTo": "string",
- "smtpReplyToName": "string",
- "smtpServers": [
- {
- "host": "string",
- "password": "string",
- "user": "string"
}
], - "smtpUser": "string"
}, - "emailImportAccount": "string",
- "expires": "2019-08-24T14:15:22Z",
- "managedEmailDomains": [
- "string"
], - "map": {
- "bounds": {
- "northEast": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "southWest": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "features": [
- {
- "geometries": [
- {
- "kind": "UNDEFINED",
- "points": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
], - "pointsSensorOverride": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
]
}
], - "ref": "string",
- "type": "string"
}
], - "markers": [
- {
- "kind": "FEATURE_UNDEFINED",
- "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "text": "string",
- "weight": 0.1
}
]
}, - "mapPointPrecision": 0,
- "metarId": "string",
- "mobileSensorThresholds": {
- "wetDepthThreshold": 0.1
}, - "navCanada": {
- "apiEndpoint": "string",
- "password": "string",
- "username": "string"
}, - "optionalFeatures": [
- "NO_OPTIONAL_FEATURE"
], - "plausibilityThresholds": {
- "depthThreshold": 0,
- "maxTemp": 0,
- "maxTempDeviation": 0,
- "rwyccThreshold": 0
}, - "preferences": {
- "allowedChangeReasons": [
- "CHANGE_REASON_TEMPERATURE"
], - "allowedChemicals": [
- "UNSPECIFIED_OR_OTHER"
], - "atisAudioFormat": "AUDIO_UNSPECIFIED",
- "atisRecipients": [
- "string"
], - "autoImportConditions": true,
- "customFormRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "disableClosedAprons": true,
- "disableClosedTaxiways": true,
- "disablePlausibilityAnalysis": true,
- "disableRwyccAdjustReason": true,
- "enforceRwyccUpDownGrades": true,
- "excludeFrictionFromReport": true,
- "mapTaxiwaysOnTop": true,
- "observationTimeOnPublish": "NO",
- "rcrPhotosCutoffHours": 0,
- "rcrRecipients": [
- "string"
], - "snowtamRecipients": [
- "string"
], - "stockPhrases": [
- "string"
], - "taskPreferences": {
- "taskRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "taskTypes": [
- {
- "description": "string",
- "name": "string"
}
]
}, - "withFriction": true,
- "withFrozenSand": true,
- "withIgnoreRunway": true,
- "withLandingDirection": true,
- "withSpwr": true,
- "withUnassessed": true,
- "withViewerKeys": true,
- "withoutSnow": true
}, - "rcrEmailBodyTemplate": "string",
- "rcrEmailSubjectTemplate": "string",
- "regulatoryFramework": "FRAMEWORK_UNSPECIFIED",
- "runwaySenseId": "string",
- "runways": [
- {
- "leftSide": "CARDINAL_UNSPECIFIED",
- "length": 0,
- "localTaxiways": [
- "string"
], - "rightSide": "CARDINAL_UNSPECIFIED",
- "runwayAixmIdentifier": "string",
- "runwayId": "string",
- "width": 0
}
], - "rws200": [
- {
- "address": "string",
- "password": "string",
- "runwayOverride": "string",
- "stationId": "string",
- "username": "string"
}
], - "silentAprons": [
- "string"
], - "silentTaxiways": [
- "string"
], - "snowtamAixmIdentifier": "string",
- "snowtamEmailBodyTemplate": "string",
- "snowtamEmailSubjectTemplate": "string",
- "taskEmailBodyTemplate": "string",
- "taskEmailSubjectTemplate": "string",
- "taxiwayAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "taxiwayOverrides": {
- "property1": "string",
- "property2": "string"
}, - "taxiways": [
- "string"
], - "userLimit": 0
}{- "config": {
- "aerodromeAixmIdentifier": "string",
- "aerodromeId": "string",
- "aftnRcr": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "aftnSnowtam": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "apronAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "apronOverrides": {
- "property1": "string",
- "property2": "string"
}, - "aprons": [
- "string"
], - "atisEmailBodyTemplate": "string",
- "atisEmailSubjectTemplate": "string",
- "awoswxSiteId": "string",
- "created": "2019-08-24T14:15:22Z",
- "customForms": [
- {
- "customFormId": "string",
- "description": "string",
- "fields": [
- {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "description": "string",
- "fieldId": "string",
- "htmlLabel": {
- "html": "string"
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "label": "string",
- "mapPointValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "moodSet": "MOOD_NEUTRAL",
- "moodUnset": "MOOD_NEUTRAL",
- "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "photosValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "photoIds": [
- "string"
]
}, - "required": true,
- "requiredWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "timeValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "visibleWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
], - "iconData": "string",
- "languageCode": "string",
- "persistent": true,
- "tileset": "TILESET_UNSPECIFIED",
- "title": "string"
}
], - "deployment": "UNKNOWN",
- "description": "string",
- "distanceUnit": "DISTANCE_UNIT_UNSPECIFIED",
- "dynamicFeatures": [
- {
- "dynamicFeatureConfigId": "string",
- "groupsConfig": {
- "fallbackId": "string",
- "groups": [
- {
- "id": "string",
- "name": "string"
}
], - "travelTime": {
- "property1": 0,
- "property2": 0
}
}, - "objects": [
- {
- "aixmUuid": "string",
- "groupId": "string",
- "id": "string",
- "size": "DF_SIZE_UNSPECIFIED"
}
], - "scheme": {
- "fields": [
- {
- "confirmCriteria": {
- "equalsString": [
- "string"
]
}, - "description": "string",
- "fieldId": "string",
- "filterCriteria": {
- "equalsString": [
- "string"
]
}, - "label": "string",
- "mood": {
- "fieldMood": {
- "property1": "DFF_MOOD_NEUTRAL",
- "property2": "DFF_MOOD_NEUTRAL"
}
}, - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": null,
- "setFieldToValue": [ ],
- "userSetField": null
}, - "property2": {
- "clearTeamAssignment": null,
- "setFieldToValue": [ ],
- "userSetField": null
}
}
}, - "privileged": true,
- "value": {
- "boolValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- null
], - "maxSelectedItems": 0,
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "selection": [
- null
]
}, - "stringValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": "string"
}
}, - "visibleCriteria": {
- "dependsOnTeamsField": true,
- "fieldCriteria": {
- "equalsString": [
- null
], - "isSet": true,
- "notEqualsString": [
- null
], - "otherFieldId": "string"
}
}
}
]
}, - "snowRemovalConfig": {
- "sizeDuration": [
- {
- "durationMinutes": 0,
- "size": "DF_SIZE_UNSPECIFIED"
}
]
}, - "teamsConfig": {
- "automaticFocusedView": true,
- "coordinatorTeams": [
- "string"
], - "coordinatorTeamsMinimalDetails": [
- "string"
], - "focusedViewFieldIds": [
- "string"
], - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}, - "property2": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}
}
}, - "primarySortColumn": "string",
- "teams": [
- {
- "id": "string",
- "name": "string"
}
]
}, - "titleCoordinator": "string",
- "titlePrimary": "string",
- "titleShort": "string",
- "titleTeams": "string"
}
], - "email": {
- "aadClientId": "string",
- "aadClientSecret": "string",
- "aadScopes": [
- "string"
], - "aadTokenUrl": "string",
- "smtpFrom": "string",
- "smtpFromName": "string",
- "smtpHost": "string",
- "smtpPassword": "string",
- "smtpReplyTo": "string",
- "smtpReplyToName": "string",
- "smtpServers": [
- {
- "host": "string",
- "password": "string",
- "user": "string"
}
], - "smtpUser": "string"
}, - "emailImportAccount": "string",
- "expires": "2019-08-24T14:15:22Z",
- "iata": "string",
- "managedEmailDomains": [
- "string"
], - "map": {
- "bounds": {
- "northEast": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "southWest": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "features": [
- {
- "geometries": [
- {
- "kind": "UNDEFINED",
- "points": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
], - "pointsSensorOverride": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
]
}
], - "ref": "string",
- "type": "string"
}
], - "markers": [
- {
- "kind": "FEATURE_UNDEFINED",
- "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "text": "string",
- "weight": 0.1
}
]
}, - "mapPointPrecision": 0,
- "metarId": "string",
- "mobileSensorThresholds": {
- "wetDepthThreshold": 0.1
}, - "navCanada": {
- "apiEndpoint": "string",
- "password": "string",
- "username": "string"
}, - "optionalFeatures": [
- "NO_OPTIONAL_FEATURE"
], - "plausibilityThresholds": {
- "depthThreshold": 0,
- "maxTemp": 0,
- "maxTempDeviation": 0,
- "rwyccThreshold": 0
}, - "preferences": {
- "allowedChangeReasons": [
- "CHANGE_REASON_TEMPERATURE"
], - "allowedChemicals": [
- "UNSPECIFIED_OR_OTHER"
], - "atisAudioFormat": "AUDIO_UNSPECIFIED",
- "atisRecipients": [
- "string"
], - "autoImportConditions": true,
- "customFormRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "disableClosedAprons": true,
- "disableClosedTaxiways": true,
- "disablePlausibilityAnalysis": true,
- "disableRwyccAdjustReason": true,
- "enforceRwyccUpDownGrades": true,
- "excludeFrictionFromReport": true,
- "mapTaxiwaysOnTop": true,
- "observationTimeOnPublish": "NO",
- "rcrPhotosCutoffHours": 0,
- "rcrRecipients": [
- "string"
], - "snowtamRecipients": [
- "string"
], - "stockPhrases": [
- "string"
], - "taskPreferences": {
- "taskRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "taskTypes": [
- {
- "description": "string",
- "disabled": true,
- "id": 0,
- "name": "string"
}
]
}, - "withFriction": true,
- "withFrozenSand": true,
- "withIgnoreRunway": true,
- "withLandingDirection": true,
- "withSpwr": true,
- "withUnassessed": true,
- "withViewerKeys": true,
- "withoutSnow": true
}, - "rcrEmailBodyTemplate": "string",
- "rcrEmailSubjectTemplate": "string",
- "regulatoryFramework": "FRAMEWORK_UNSPECIFIED",
- "runwaySenseId": "string",
- "runways": [
- {
- "leftSide": "CARDINAL_UNSPECIFIED",
- "length": 0,
- "localTaxiways": [
- "string"
], - "rightSide": "CARDINAL_UNSPECIFIED",
- "runwayAixmIdentifier": "string",
- "runwayId": "string",
- "width": 0
}
], - "rws200": [
- {
- "address": "string",
- "password": "string",
- "runwayOverride": "string",
- "stationId": "string",
- "username": "string"
}
], - "silentAprons": [
- "string"
], - "silentTaxiways": [
- "string"
], - "snowtamAixmIdentifier": "string",
- "snowtamEmailBodyTemplate": "string",
- "snowtamEmailSubjectTemplate": "string",
- "taskEmailBodyTemplate": "string",
- "taskEmailSubjectTemplate": "string",
- "taxiwayAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "taxiwayOverrides": {
- "property1": "string",
- "property2": "string"
}, - "taxiways": [
- "string"
], - "updated": "2019-08-24T14:15:22Z",
- "userLimit": 0
}
}This method requires system admin permissions.
| config.aerodromeId required | string Aerodrome identifier (ICAO) |
| updateMask | string |
Aerodrome configuration
| aerodromeAixmIdentifier | string (AIXM identifier of the aerodrome in UUIDv4 format) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (AFTN configuration, for sending RCR via AFTN-over-TCP gateway) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (AFTN configuration, for sending SNOWTAM via AFTN-over-TCP gateway) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (AIXM Apron identifiers) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Apron name override, overrides the apron names in the reports only) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| aprons | Array of strings (Aprons, in the order they are presented to the user) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| atisEmailBodyTemplate | string (ATIS email body template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| atisEmailSubjectTemplate | string (ATIS email subject template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| awoswxSiteId | string (wx.awos.se site ID, for importing weather data) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (Customised report definitions) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| deployment | string (The aerodrome deployment type (production, trial, etc.)) Default: "UNKNOWN" Enum: "UNKNOWN" "PRODUCTION" "TESTING" "TRIAL" "DEVELOPMENT" "EXPIRED" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| description | string (Aerodrome description (name) for display purposes) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| distanceUnit | string (Unit for runway lengths, widths) Default: "DISTANCE_UNIT_UNSPECIFIED" Enum: "DISTANCE_UNIT_UNSPECIFIED" "METERS" "FEET" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (Aircraft stand configuration) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Configuration for outgoing email (requires system admin permissions)) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| emailImportAccount | string (Email account ID for importing sensor data sent via email) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| expires | string <date-time> (The license expiry for the aerodrome, or blank if the license does not expire) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| managedEmailDomains | Array of strings (Email domains where new users can be added) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Map of aerodrome elements) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| mapPointPrecision | integer <int32> (Map point precision in meters, for reducing map resolution to increase performance) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| metarId | string (METAR ID (ICAO), for importing weather data) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Overwrite sensor depth thresholds) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (NavCanada configuration, for sending SNOWTAM via NavCanada API) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| optionalFeatures | Array of strings (Enabled optional features (licensed modules)) Items Enum: "NO_OPTIONAL_FEATURE" "MOBILE_SENSORS_FEATURE" "ATIS_REPORTING_FEATURE" "DESKTOP_UI_FEATURE" "MEDIA_CAPTURE_FEATURE" "NAVBLUE_RUNWAYSENSE_FEATURE" "SEND_RCR_FEATURE" "FRICTION_REPORTING_FEATURE" "VIEWER_KEY_FEATURE" "ARCHIVE_VIEW_FEATURE" "STOCK_REMARKS_FEATURE" "API_FEATURE" "SEND_SMS_FEATURE" "SEND_FAX_FEATURE" "MAP_FEATURE" "RUNWAY_ASSESSMENT_FEATURE" "PIREP_FEATURE" "TASK_MANAGEMENT_FEATURE" "ANALYTICS_FEATURE" "SEND_NOTIFICATIONS_FEATURE" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Plausibility Analysis Thresholds) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Aerodrome preferences, editable with aerodrome admin permissions) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| rcrEmailBodyTemplate | string (RCR email body template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| rcrEmailSubjectTemplate | string (RCR email subject template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| regulatoryFramework | string (The used framework (ICAO_GRF / CANADA_RSC)) Default: "FRAMEWORK_UNSPECIFIED" Enum: "FRAMEWORK_UNSPECIFIED" "ICAO_GRF" "CANADA_RSC" "ICAO_GRF_NOMULTIDEPTH" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| runwaySenseId | string (NavBlue RunwaySense ID, for importing aircraft braking data) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (Runways, in the order they are presented to the user) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array of objects (RWS200 config) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| silentAprons | Array of strings (Silent aprons, i.e., those that can be reported but are not included in SNOWTAM) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| silentTaxiways | Array of strings (Silent taxiways, i.e., those that can be reported but are not included in SNOWTAM) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| snowtamAixmIdentifier | string (SNOWTAM event identifier in UUIDv4 format) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| snowtamEmailBodyTemplate | string (SNOWTAM email body template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| snowtamEmailSubjectTemplate | string (SNOWTAM email subject template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| taskEmailBodyTemplate | string (Task email notification body template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| taskEmailSubjectTemplate | string (Task email notification subject template override (Go template format)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (AIXM Taxiway identifiers) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Taxiway name override, overrides the taxiway names in the reports only) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||
| taxiways | Array of strings (Taxiways, in the order they are presented to the user) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
| userLimit | integer <int32> (User limit, where 0 means unlimited) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||
object (Aerodrome configuration) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{- "aerodromeAixmIdentifier": "string",
- "aftnRcr": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "aftnSnowtam": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "apronAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "apronOverrides": {
- "property1": "string",
- "property2": "string"
}, - "aprons": [
- "string"
], - "atisEmailBodyTemplate": "string",
- "atisEmailSubjectTemplate": "string",
- "awoswxSiteId": "string",
- "customForms": [
- {
- "customFormId": "string",
- "description": "string",
- "fields": [
- {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "description": "string",
- "fieldId": "string",
- "htmlLabel": {
- "html": "string"
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "label": "string",
- "mapPointValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "moodSet": "MOOD_NEUTRAL",
- "moodUnset": "MOOD_NEUTRAL",
- "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "photosValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "photoIds": [
- "string"
]
}, - "required": true,
- "requiredWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "timeValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "visibleWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
], - "iconData": "string",
- "languageCode": "string",
- "persistent": true,
- "tileset": "TILESET_UNSPECIFIED",
- "title": "string"
}
], - "deployment": "UNKNOWN",
- "description": "string",
- "distanceUnit": "DISTANCE_UNIT_UNSPECIFIED",
- "dynamicFeatures": [
- {
- "dynamicFeatureConfigId": "string",
- "groupsConfig": {
- "fallbackId": "string",
- "groups": [
- {
- "id": "string",
- "name": "string"
}
], - "travelTime": {
- "property1": 0,
- "property2": 0
}
}, - "objects": [
- {
- "aixmUuid": "string",
- "groupId": "string",
- "id": "string",
- "size": "DF_SIZE_UNSPECIFIED"
}
], - "scheme": {
- "fields": [
- {
- "confirmCriteria": {
- "equalsString": [
- "string"
]
}, - "description": "string",
- "fieldId": "string",
- "filterCriteria": {
- "equalsString": [
- "string"
]
}, - "label": "string",
- "mood": {
- "fieldMood": {
- "property1": "DFF_MOOD_NEUTRAL",
- "property2": "DFF_MOOD_NEUTRAL"
}
}, - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}, - "property2": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}
}
}, - "privileged": true,
- "value": {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}
}, - "visibleCriteria": {
- "dependsOnTeamsField": true,
- "fieldCriteria": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
}
]
}, - "snowRemovalConfig": {
- "sizeDuration": [
- {
- "durationMinutes": 0,
- "size": "DF_SIZE_UNSPECIFIED"
}
]
}, - "teamsConfig": {
- "automaticFocusedView": true,
- "coordinatorTeams": [
- "string"
], - "coordinatorTeamsMinimalDetails": [
- "string"
], - "focusedViewFieldIds": [
- "string"
], - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "property2": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}
}
}, - "primarySortColumn": "string",
- "teams": [
- {
- "id": "string",
- "name": "string"
}
]
}, - "titleCoordinator": "string",
- "titlePrimary": "string",
- "titleShort": "string",
- "titleTeams": "string"
}
], - "email": {
- "aadClientId": "string",
- "aadClientSecret": "string",
- "aadScopes": [
- "string"
], - "aadTokenUrl": "string",
- "smtpFrom": "string",
- "smtpFromName": "string",
- "smtpHost": "string",
- "smtpPassword": "string",
- "smtpReplyTo": "string",
- "smtpReplyToName": "string",
- "smtpServers": [
- {
- "host": "string",
- "password": "string",
- "user": "string"
}
], - "smtpUser": "string"
}, - "emailImportAccount": "string",
- "expires": "2019-08-24T14:15:22Z",
- "managedEmailDomains": [
- "string"
], - "map": {
- "bounds": {
- "northEast": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "southWest": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "features": [
- {
- "geometries": [
- {
- "kind": "UNDEFINED",
- "points": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
], - "pointsSensorOverride": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
]
}
], - "ref": "string",
- "type": "string"
}
], - "markers": [
- {
- "kind": "FEATURE_UNDEFINED",
- "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "text": "string",
- "weight": 0.1
}
]
}, - "mapPointPrecision": 0,
- "metarId": "string",
- "mobileSensorThresholds": {
- "wetDepthThreshold": 0.1
}, - "navCanada": {
- "apiEndpoint": "string",
- "password": "string",
- "username": "string"
}, - "optionalFeatures": [
- "NO_OPTIONAL_FEATURE"
], - "plausibilityThresholds": {
- "depthThreshold": 0,
- "maxTemp": 0,
- "maxTempDeviation": 0,
- "rwyccThreshold": 0
}, - "preferences": {
- "allowedChangeReasons": [
- "CHANGE_REASON_TEMPERATURE"
], - "allowedChemicals": [
- "UNSPECIFIED_OR_OTHER"
], - "atisAudioFormat": "AUDIO_UNSPECIFIED",
- "atisRecipients": [
- "string"
], - "autoImportConditions": true,
- "customFormRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "disableClosedAprons": true,
- "disableClosedTaxiways": true,
- "disablePlausibilityAnalysis": true,
- "disableRwyccAdjustReason": true,
- "enforceRwyccUpDownGrades": true,
- "excludeFrictionFromReport": true,
- "mapTaxiwaysOnTop": true,
- "observationTimeOnPublish": "NO",
- "rcrPhotosCutoffHours": 0,
- "rcrRecipients": [
- "string"
], - "snowtamRecipients": [
- "string"
], - "stockPhrases": [
- "string"
], - "taskPreferences": {
- "taskRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "taskTypes": [
- {
- "description": "string",
- "name": "string"
}
]
}, - "withFriction": true,
- "withFrozenSand": true,
- "withIgnoreRunway": true,
- "withLandingDirection": true,
- "withSpwr": true,
- "withUnassessed": true,
- "withViewerKeys": true,
- "withoutSnow": true
}, - "rcrEmailBodyTemplate": "string",
- "rcrEmailSubjectTemplate": "string",
- "regulatoryFramework": "FRAMEWORK_UNSPECIFIED",
- "runwaySenseId": "string",
- "runways": [
- {
- "leftSide": "CARDINAL_UNSPECIFIED",
- "length": 0,
- "localTaxiways": [
- "string"
], - "rightSide": "CARDINAL_UNSPECIFIED",
- "runwayAixmIdentifier": "string",
- "runwayId": "string",
- "width": 0
}
], - "rws200": [
- {
- "address": "string",
- "password": "string",
- "runwayOverride": "string",
- "stationId": "string",
- "username": "string"
}
], - "silentAprons": [
- "string"
], - "silentTaxiways": [
- "string"
], - "snowtamAixmIdentifier": "string",
- "snowtamEmailBodyTemplate": "string",
- "snowtamEmailSubjectTemplate": "string",
- "taskEmailBodyTemplate": "string",
- "taskEmailSubjectTemplate": "string",
- "taxiwayAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "taxiwayOverrides": {
- "property1": "string",
- "property2": "string"
}, - "taxiways": [
- "string"
], - "userLimit": 0
}{- "config": {
- "aerodromeAixmIdentifier": "string",
- "aerodromeId": "string",
- "aftnRcr": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "aftnSnowtam": {
- "connectionName": "string",
- "destinations": [
- "string"
], - "hosts": [
- "string"
], - "source": "string"
}, - "apronAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "apronOverrides": {
- "property1": "string",
- "property2": "string"
}, - "aprons": [
- "string"
], - "atisEmailBodyTemplate": "string",
- "atisEmailSubjectTemplate": "string",
- "awoswxSiteId": "string",
- "created": "2019-08-24T14:15:22Z",
- "customForms": [
- {
- "customFormId": "string",
- "description": "string",
- "fields": [
- {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "description": "string",
- "fieldId": "string",
- "htmlLabel": {
- "html": "string"
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "label": "string",
- "mapPointValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "moodSet": "MOOD_NEUTRAL",
- "moodUnset": "MOOD_NEUTRAL",
- "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "photosValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "photoIds": [
- "string"
]
}, - "required": true,
- "requiredWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "timeValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "visibleWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
], - "iconData": "string",
- "languageCode": "string",
- "persistent": true,
- "tileset": "TILESET_UNSPECIFIED",
- "title": "string"
}
], - "deployment": "UNKNOWN",
- "description": "string",
- "distanceUnit": "DISTANCE_UNIT_UNSPECIFIED",
- "dynamicFeatures": [
- {
- "dynamicFeatureConfigId": "string",
- "groupsConfig": {
- "fallbackId": "string",
- "groups": [
- {
- "id": "string",
- "name": "string"
}
], - "travelTime": {
- "property1": 0,
- "property2": 0
}
}, - "objects": [
- {
- "aixmUuid": "string",
- "groupId": "string",
- "id": "string",
- "size": "DF_SIZE_UNSPECIFIED"
}
], - "scheme": {
- "fields": [
- {
- "confirmCriteria": {
- "equalsString": [
- "string"
]
}, - "description": "string",
- "fieldId": "string",
- "filterCriteria": {
- "equalsString": [
- "string"
]
}, - "label": "string",
- "mood": {
- "fieldMood": {
- "property1": "DFF_MOOD_NEUTRAL",
- "property2": "DFF_MOOD_NEUTRAL"
}
}, - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- null
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": null,
- "setFieldToValue": [ ],
- "userSetField": null
}, - "property2": {
- "clearTeamAssignment": null,
- "setFieldToValue": [ ],
- "userSetField": null
}
}
}, - "privileged": true,
- "value": {
- "boolValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- null
], - "maxSelectedItems": 0,
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "selection": [
- null
]
}, - "stringValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": "string"
}
}, - "visibleCriteria": {
- "dependsOnTeamsField": true,
- "fieldCriteria": {
- "equalsString": [
- null
], - "isSet": true,
- "notEqualsString": [
- null
], - "otherFieldId": "string"
}
}
}
]
}, - "snowRemovalConfig": {
- "sizeDuration": [
- {
- "durationMinutes": 0,
- "size": "DF_SIZE_UNSPECIFIED"
}
]
}, - "teamsConfig": {
- "automaticFocusedView": true,
- "coordinatorTeams": [
- "string"
], - "coordinatorTeamsMinimalDetails": [
- "string"
], - "focusedViewFieldIds": [
- "string"
], - "onValueSelected": {
- "onClear": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "onSet": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": "string",
- "name": "string"
}
], - "userSetField": "string"
}, - "valueAction": {
- "property1": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}, - "property2": {
- "clearTeamAssignment": true,
- "setFieldToValue": [
- {
- "id": null,
- "name": null
}
], - "userSetField": "string"
}
}
}, - "primarySortColumn": "string",
- "teams": [
- {
- "id": "string",
- "name": "string"
}
]
}, - "titleCoordinator": "string",
- "titlePrimary": "string",
- "titleShort": "string",
- "titleTeams": "string"
}
], - "email": {
- "aadClientId": "string",
- "aadClientSecret": "string",
- "aadScopes": [
- "string"
], - "aadTokenUrl": "string",
- "smtpFrom": "string",
- "smtpFromName": "string",
- "smtpHost": "string",
- "smtpPassword": "string",
- "smtpReplyTo": "string",
- "smtpReplyToName": "string",
- "smtpServers": [
- {
- "host": "string",
- "password": "string",
- "user": "string"
}
], - "smtpUser": "string"
}, - "emailImportAccount": "string",
- "expires": "2019-08-24T14:15:22Z",
- "iata": "string",
- "managedEmailDomains": [
- "string"
], - "map": {
- "bounds": {
- "northEast": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "southWest": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "features": [
- {
- "geometries": [
- {
- "kind": "UNDEFINED",
- "points": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
], - "pointsSensorOverride": [
- {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
]
}
], - "ref": "string",
- "type": "string"
}
], - "markers": [
- {
- "kind": "FEATURE_UNDEFINED",
- "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "text": "string",
- "weight": 0.1
}
]
}, - "mapPointPrecision": 0,
- "metarId": "string",
- "mobileSensorThresholds": {
- "wetDepthThreshold": 0.1
}, - "navCanada": {
- "apiEndpoint": "string",
- "password": "string",
- "username": "string"
}, - "optionalFeatures": [
- "NO_OPTIONAL_FEATURE"
], - "plausibilityThresholds": {
- "depthThreshold": 0,
- "maxTemp": 0,
- "maxTempDeviation": 0,
- "rwyccThreshold": 0
}, - "preferences": {
- "allowedChangeReasons": [
- "CHANGE_REASON_TEMPERATURE"
], - "allowedChemicals": [
- "UNSPECIFIED_OR_OTHER"
], - "atisAudioFormat": "AUDIO_UNSPECIFIED",
- "atisRecipients": [
- "string"
], - "autoImportConditions": true,
- "customFormRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "disableClosedAprons": true,
- "disableClosedTaxiways": true,
- "disablePlausibilityAnalysis": true,
- "disableRwyccAdjustReason": true,
- "enforceRwyccUpDownGrades": true,
- "excludeFrictionFromReport": true,
- "mapTaxiwaysOnTop": true,
- "observationTimeOnPublish": "NO",
- "rcrPhotosCutoffHours": 0,
- "rcrRecipients": [
- "string"
], - "snowtamRecipients": [
- "string"
], - "stockPhrases": [
- "string"
], - "taskPreferences": {
- "taskRecipients": {
- "property1": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}, - "property2": {
- "addrs": [
- "string"
], - "sendToCurrentUser": true
}
}, - "taskTypes": [
- {
- "description": "string",
- "disabled": true,
- "id": 0,
- "name": "string"
}
]
}, - "withFriction": true,
- "withFrozenSand": true,
- "withIgnoreRunway": true,
- "withLandingDirection": true,
- "withSpwr": true,
- "withUnassessed": true,
- "withViewerKeys": true,
- "withoutSnow": true
}, - "rcrEmailBodyTemplate": "string",
- "rcrEmailSubjectTemplate": "string",
- "regulatoryFramework": "FRAMEWORK_UNSPECIFIED",
- "runwaySenseId": "string",
- "runways": [
- {
- "leftSide": "CARDINAL_UNSPECIFIED",
- "length": 0,
- "localTaxiways": [
- "string"
], - "rightSide": "CARDINAL_UNSPECIFIED",
- "runwayAixmIdentifier": "string",
- "runwayId": "string",
- "width": 0
}
], - "rws200": [
- {
- "address": "string",
- "password": "string",
- "runwayOverride": "string",
- "stationId": "string",
- "username": "string"
}
], - "silentAprons": [
- "string"
], - "silentTaxiways": [
- "string"
], - "snowtamAixmIdentifier": "string",
- "snowtamEmailBodyTemplate": "string",
- "snowtamEmailSubjectTemplate": "string",
- "taskEmailBodyTemplate": "string",
- "taskEmailSubjectTemplate": "string",
- "taxiwayAixmIdentifiers": {
- "property1": "string",
- "property2": "string"
}, - "taxiwayOverrides": {
- "property1": "string",
- "property2": "string"
}, - "taxiways": [
- "string"
], - "updated": "2019-08-24T14:15:22Z",
- "userLimit": 0
}
}| aerodromeId required | string |
| dynamicFeatureConfigId | string | ||||||
Array of objects (DynamicFeature) | |||||||
Array
| |||||||
{- "dynamicFeatureConfigId": "string",
- "features": [
- {
- "fields": [
- {
- "fieldId": "string",
- "value": {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}
}
}
], - "objectId": "string",
- "team": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}
}
]
}{ }| aerodromeId required | string |
| dynamicFeatureConfigId | string |
| featureIds | Array of strings |
{- "dynamicFeatureConfigId": "string",
- "featureIds": [
- "string"
]
}{ }This returns a stream of JSON objects, in real time as assessments change.
| aerodromeId required | string |
object (rpcStatus) | |||||||
| |||||||
object (DynamicFeaturesResponse) | |||||||
| |||||||
{- "error": {
- "code": 0,
- "details": [
- {
- "@type": "string",
- "property1": null,
- "property2": null
}
], - "message": "string"
}, - "result": {
- "dynamicFeatures": {
- "features": [
- {
- "dynamicFeatureConfigId": "string",
- "features": [
- {
- "fields": [
- {
- "fieldId": "string",
- "value": {
- "boolValue": null,
- "intValue": null,
- "nOfValue": null,
- "stringValue": null
}
}
], - "objectId": "string",
- "team": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}
}
]
}
], - "sequence": "string",
- "updatedTimestamp": "2019-08-24T14:15:22Z"
}
}
}| aerodromeId required | string |
| sinceHours | integer <int32> look this many hours into the past (default 1) |
| untilHours | integer <int32> look this many hours into the future (default 4) |
Array of objects (Flight) | |||||||||||
Array
| |||||||||||
{- "flights": [
- {
- "aircraft": {
- "icao": "string",
- "icao24": "string",
- "modelCode": "string",
- "modelText": "string",
- "registration": "string"
}, - "airline": {
- "iata": "string",
- "icao": "string",
- "name": "string"
}, - "arrival": {
- "actual": "2019-08-24T14:15:22Z",
- "airport": "string",
- "estimated": "2019-08-24T14:15:22Z",
- "gate": "string",
- "iata": "string",
- "icao": "string",
- "scheduled": "2019-08-24T14:15:22Z",
- "terminal": "string"
}, - "departure": {
- "actual": "2019-08-24T14:15:22Z",
- "airport": "string",
- "estimated": "2019-08-24T14:15:22Z",
- "gate": "string",
- "iata": "string",
- "icao": "string",
- "scheduled": "2019-08-24T14:15:22Z",
- "terminal": "string"
}, - "flightNumber": {
- "iata": "string",
- "icao": "string"
}
}
]
}The system performs an end-to-end health check, including a full database transaction, and returns a summarized status. This method can be used for service monitoring and load balancing.
This method does not require authentication.
| status | string (HealthStatus) Default: "FAIL" Enum: "FAIL" "OK" |
{- "status": "FAIL"
}The aerodrome assessment is represented a single JSON object. At the top
level are certain metadata fields, and the runways, taxiways and
aprons arrays. Each contain lists of objects describing an individual
aerodrome element. Each such element has several fields, each generally
consisting of both a value and meta field. The value is the current
assessment and the meta contains information about who and when made the
assessment. The personal information (user ID) is in some cases redacted.
The aerodrome live method returns the currently assessed state of the aerodrome. No request body is required.
| aerodromeId required | string |
object (Aerodrome assessments) | |||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||
| atisPreview | string | ||||||||||||||||||||||||||||||||||||||||
| csvPreview | string | ||||||||||||||||||||||||||||||||||||||||
| pdfPreview | string <byte> | ||||||||||||||||||||||||||||||||||||||||
object (PIREPSummary) | |||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||
Array of objects (PlausibilityAnalysis) | |||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||
| rcrCurrent | Array of strings | ||||||||||||||||||||||||||||||||||||||||
Array of objects (Runway Condition Report (RCR) entry) | |||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||
| remainingValidityMinutes | integer <int32> | ||||||||||||||||||||||||||||||||||||||||
| significantChangeStatus | string (SignificantChangeStatus) Default: "SIGNIFICANT_CHANGE_STATUS_UNSPECIFIED" Enum: "SIGNIFICANT_CHANGE_STATUS_UNSPECIFIED" "SIGNIFICANT_CHANGE_STATUS_OK" "SIGNIFICANT_CHANGE_STATUS_SHOULD_PUBLISH" "SIGNIFICANT_CHANGE_STATUS_EXPIRES_SOON" "SIGNIFICANT_CHANGE_STATUS_EXPIRED" Indicating if a significant change has occurred in the aerodrome report, such as SNOWTAM validity or expiration. | ||||||||||||||||||||||||||||||||||||||||
| textPreview | string | ||||||||||||||||||||||||||||||||||||||||
{- "aerodrome": {
- "aerodromeId": "string",
- "aircraftStands": [
- {
- "fields": [
- {
- "fieldId": "string",
- "value": {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}
}
}
], - "objectId": "string",
- "team": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}
}
], - "aprons": [
- {
- "apronId": "string",
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}
}
], - "atisPreview": "string",
- "csvPreview": "string",
- "metar": {
- "altimInHg": 0.1,
- "dewpointC": 0.1,
- "elevationM": 0.1,
- "flightCategory": "string",
- "latitude": 0.1,
- "longitude": 0.1,
- "maxt24hrC": 0.1,
- "maxtC": 0.1,
- "metarType": "string",
- "mint24hrC": 0.1,
- "mintC": 0.1,
- "observationTime": "2019-08-24T14:15:22Z",
- "precip24hrIn": 0.1,
- "precip3hrIn": 0.1,
- "precip6hrIn": 0.1,
- "precipIn": 0.1,
- "rawText": "string",
- "seaLevelPressureMb": 0.1,
- "skyCondition": [
- {
- "cloudBaseFtAgl": 0,
- "cloudType": "SKY_COVER_UNKNOWN",
- "deprecatedSkyCover": "string"
}
], - "snowIn": 0.1,
- "stationId": "string",
- "tempC": 0.1,
- "threeHrPressureTendencyMb": 0.1,
- "vertVisFt": 0,
- "visibilityStatuteMi": 0.1,
- "weatherCondition": [
- {
- "intensity": "INTENSITY_UNKNOWN",
- "weatherCategory": "CATEGORY_UNKNOWN",
- "weatherType": [
- "TYPE_UNKNOWN"
]
}
], - "windDirDegrees": 0,
- "windDirVariable": true,
- "windGustKt": 0,
- "windSpeedKt": 0,
- "wxString": "string"
}, - "pdfPreview": "string",
- "plausibilityAnalysis": [
- {
- "type": "PLAUSIBILITY_ANALYSIS_UNSPECIFIED",
- "warnings": [
- {
- "apronId": "string",
- "conditionWarning": {
- "contaminationDepthFirst": 0,
- "contaminationDepthSecond": 0,
- "coveragePercFirst": 0,
- "coveragePercSecond": 0,
- "surfaceDescriptionFirst": "DRY",
- "surfaceDescriptionSecond": "DRY",
- "thresholdCover": 0,
- "thresholdDepth": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "reason": "PLAUSIBILITY_WARNING_REASON_UNSPECIFIED",
- "runwayId": "string",
- "runwayZone": "ZONE_UNSPECIFIED",
- "rwyccWarning": {
- "rwyccFirst": "RWYCC_0",
- "rwyccSecond": "RWYCC_0",
- "threshold": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "taxiwayId": "string",
- "tempWarning": {
- "median": 0,
- "runwayTemperature": 0,
- "threshold": 0,
- "unit": "TEMPERATURE_UNIT_UNSPECIFIED"
}
}
]
}
], - "rcrCurrent": [
- "string"
], - "rcrHistory": [
- {
- "reportType": "UNSPECIFIED",
- "runwayLines": [
- "string"
], - "time": "2019-08-24T14:15:22Z"
}
], - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwaySenseTimestamp": "2019-08-24T14:15:22Z",
- "runways": [
- {
- "adjacentSnowbanks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "chemicalTreatment": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "clearedLength": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "clearedWidth": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "deicingChemical": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "UNSPECIFIED_OR_OTHER"
]
}, - "driftingSnow": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "frozenSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "ignored": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "landingDirection": "LR",
- "looseSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "observationTime": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwayId": "string",
- "snowDrifts": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "temperature": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "unit": "TEMPERATURE_UNIT_UNSPECIFIED",
- "value": 0
}, - "windrows": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "zoneA": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneB": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneC": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}
}
], - "rwis": [
- {
- "rwisData": {
- "airTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "airTemperatureMax": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "airTemperatureMin": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "chemicalAmount": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "frostPointTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "hailIntensity": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "iceLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "presentWeather": "TYPE_UNKNOWN",
- "rainAccumulation": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "rainIntensity": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "snowAccumulation": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "snowLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "subSurfaceTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceGrip": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceState": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "waterDepth": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "waterLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "weatherStationId": "string",
- "weatherStationLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "windDirection": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windGustDirection": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windSpeed": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windSpeedMax": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}
}, - "timestamp": "2019-08-24T14:15:22Z"
}
], - "sequence": "string",
- "significantChangeStatus": "SIGNIFICANT_CHANGE_STATUS_UNSPECIFIED",
- "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "taxiways": [
- {
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "taxiwayId": "string"
}
], - "textPreview": "string",
- "updatedTimestamp": "2019-08-24T14:15:22Z"
}, - "atisPreview": "string",
- "csvPreview": "string",
- "pdfPreview": "string",
- "pirepSummary": {
- "recentPireps": [
- {
- "aircraftIdentification": "A12B",
- "brakingAction": "BRAKING_ACTION_UNSPECIFIED",
- "flightNumber": "AB1234",
- "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "runwayId": "01-19L",
- "time": "2019-08-24T14:15:22Z"
}
], - "runwaySummaries": {
- "property1": {
- "latestReport": {
- "aircraftIdentification": "A12B",
- "brakingAction": "BRAKING_ACTION_UNSPECIFIED",
- "flightNumber": "AB1234",
- "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "runwayId": "01-19L",
- "time": "2019-08-24T14:15:22Z"
}, - "minReport": {
- "aircraftIdentification": "A12B",
- "brakingAction": "BRAKING_ACTION_UNSPECIFIED",
- "flightNumber": "AB1234",
- "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "runwayId": "01-19L",
- "time": "2019-08-24T14:15:22Z"
}, - "pirepSigChange": "STATUS_UNSPECIFIED",
- "runwayId": "string"
}, - "property2": {
- "latestReport": {
- "aircraftIdentification": "A12B",
- "brakingAction": "BRAKING_ACTION_UNSPECIFIED",
- "flightNumber": "AB1234",
- "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "runwayId": "01-19L",
- "time": "2019-08-24T14:15:22Z"
}, - "minReport": {
- "aircraftIdentification": "A12B",
- "brakingAction": "BRAKING_ACTION_UNSPECIFIED",
- "flightNumber": "AB1234",
- "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "runwayId": "01-19L",
- "time": "2019-08-24T14:15:22Z"
}, - "pirepSigChange": "STATUS_UNSPECIFIED",
- "runwayId": "string"
}
}
}, - "plausibilityAnalysis": [
- {
- "type": "PLAUSIBILITY_ANALYSIS_UNSPECIFIED",
- "warnings": [
- {
- "apronId": "string",
- "conditionWarning": {
- "contaminationDepthFirst": 0,
- "contaminationDepthSecond": 0,
- "coveragePercFirst": 0,
- "coveragePercSecond": 0,
- "surfaceDescriptionFirst": "DRY",
- "surfaceDescriptionSecond": "DRY",
- "thresholdCover": 0,
- "thresholdDepth": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "reason": "PLAUSIBILITY_WARNING_REASON_UNSPECIFIED",
- "runwayId": "string",
- "runwayZone": "ZONE_UNSPECIFIED",
- "rwyccWarning": {
- "rwyccFirst": "RWYCC_0",
- "rwyccSecond": "RWYCC_0",
- "threshold": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "taxiwayId": "string",
- "tempWarning": {
- "median": 0,
- "runwayTemperature": 0,
- "threshold": 0,
- "unit": "TEMPERATURE_UNIT_UNSPECIFIED"
}
}
]
}
], - "rcrCurrent": [
- "string"
], - "rcrHistory": [
- {
- "reportType": "UNSPECIFIED",
- "runwayLines": [
- "string"
], - "time": "2019-08-24T14:15:22Z"
}
], - "remainingValidityMinutes": 0,
- "significantChangeStatus": "SIGNIFICANT_CHANGE_STATUS_UNSPECIFIED",
- "textPreview": "string"
}| aerodromeId required | string |
Array of objects (Apron assessments) | |||||||||
Array
| |||||||||
{- "aprons": [
- {
- "apronId": "string",
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}
}
]
}{ }Returns the ATIS report as voice synthesized speech. If keyOnly is
set, then only the blob key for the generated file is returned, and
GetBlob can be used to download it.
| aerodromeId required | string |
| keyOnly | boolean |
| hash | string |
| key | string |
| mp3 | string <byte> |
{- "hash": "string",
- "key": "string",
- "mp3": "string"
}| aerodromeId required | string |
| remarks | string |
| stockPhrases | Array of strings |
{- "remarks": "string",
- "stockPhrases": [
- "string"
]
}{ }Restores all aerodrome assessments to those of the specified report (either RCR or SNOWTAM).
| aerodromeId required | string |
| reportId required | string |
{ }| aerodromeId required | string |
| runway.runwayId required | string |
Runway assessments
object (Indicates adjacent snowbanks near the runway) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Indicates that chemical treatment has been applied to the runway) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Length of cleared runway surface) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Width of cleared runway surface) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Indicates if the runway is closed) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Type and amount of de-icing chemical applied) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Indicates presence of drifting snow on the runway) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Indicates presence of frozen sand on the runway) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Indicates if the runway is ignored in report generation) | |||||||||||||||||||||
| |||||||||||||||||||||
| landingDirection | string (Airplane landing direction) Default: "LR" Enum: "LR" "L" "R" | ||||||||||||||||||||
object (Indicates presence of loose sand on the runway) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Time of the observation) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Remarks about the runway) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Snow drift data including distance and height on each side (Canada only)) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Snowbank data including distance and height on each side) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Runway remarks applied from stock phrases) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Air temperature) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Windrow data including distance and height on each side (Canada only)) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Runway zone assessments) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Runway zone assessments) | |||||||||||||||||||||
| |||||||||||||||||||||
object (Runway zone assessments) | |||||||||||||||||||||
| |||||||||||||||||||||
{- "adjacentSnowbanks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "chemicalTreatment": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "clearedLength": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "clearedWidth": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "deicingChemical": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "UNSPECIFIED_OR_OTHER"
]
}, - "driftingSnow": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "frozenSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "ignored": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "landingDirection": "LR",
- "looseSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "observationTime": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "snowDrifts": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "temperature": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "unit": "TEMPERATURE_UNIT_UNSPECIFIED",
- "value": 0
}, - "windrows": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "zoneA": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneB": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneC": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}
}{ }This returns a stream of JSON objects, in real time as assessments change.
| aerodromeId required | string |
object (rpcStatus) | |||||||||||||||||||||||
| |||||||||||||||||||||||
object (AerodromeResponse) | |||||||||||||||||||||||
| |||||||||||||||||||||||
{- "error": {
- "code": 0,
- "details": [
- {
- "@type": "string",
- "property1": null,
- "property2": null
}
], - "message": "string"
}, - "result": {
- "aerodrome": {
- "aerodromeId": "string",
- "aircraftStands": [
- {
- "fields": [
- {
- "fieldId": "string",
- "value": {
- "boolValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- null
], - "maxSelectedItems": 0,
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "selection": [
- null
]
}, - "stringValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": "string"
}
}
}
], - "objectId": "string",
- "team": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}
}
], - "aprons": [
- {
- "apronId": "string",
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}
}
], - "atisPreview": "string",
- "csvPreview": "string",
- "metar": {
- "altimInHg": 0.1,
- "dewpointC": 0.1,
- "elevationM": 0.1,
- "flightCategory": "string",
- "latitude": 0.1,
- "longitude": 0.1,
- "maxt24hrC": 0.1,
- "maxtC": 0.1,
- "metarType": "string",
- "mint24hrC": 0.1,
- "mintC": 0.1,
- "observationTime": "2019-08-24T14:15:22Z",
- "precip24hrIn": 0.1,
- "precip3hrIn": 0.1,
- "precip6hrIn": 0.1,
- "precipIn": 0.1,
- "rawText": "string",
- "seaLevelPressureMb": 0.1,
- "skyCondition": [
- {
- "cloudBaseFtAgl": 0,
- "cloudType": "SKY_COVER_UNKNOWN",
- "deprecatedSkyCover": "string"
}
], - "snowIn": 0.1,
- "stationId": "string",
- "tempC": 0.1,
- "threeHrPressureTendencyMb": 0.1,
- "vertVisFt": 0,
- "visibilityStatuteMi": 0.1,
- "weatherCondition": [
- {
- "intensity": "INTENSITY_UNKNOWN",
- "weatherCategory": "CATEGORY_UNKNOWN",
- "weatherType": [
- "TYPE_UNKNOWN"
]
}
], - "windDirDegrees": 0,
- "windDirVariable": true,
- "windGustKt": 0,
- "windSpeedKt": 0,
- "wxString": "string"
}, - "pdfPreview": "string",
- "plausibilityAnalysis": [
- {
- "type": "PLAUSIBILITY_ANALYSIS_UNSPECIFIED",
- "warnings": [
- {
- "apronId": "string",
- "conditionWarning": {
- "contaminationDepthFirst": 0,
- "contaminationDepthSecond": 0,
- "coveragePercFirst": 0,
- "coveragePercSecond": 0,
- "surfaceDescriptionFirst": "DRY",
- "surfaceDescriptionSecond": "DRY",
- "thresholdCover": 0,
- "thresholdDepth": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "reason": "PLAUSIBILITY_WARNING_REASON_UNSPECIFIED",
- "runwayId": "string",
- "runwayZone": "ZONE_UNSPECIFIED",
- "rwyccWarning": {
- "rwyccFirst": "RWYCC_0",
- "rwyccSecond": "RWYCC_0",
- "threshold": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "taxiwayId": "string",
- "tempWarning": {
- "median": 0,
- "runwayTemperature": 0,
- "threshold": 0,
- "unit": "TEMPERATURE_UNIT_UNSPECIFIED"
}
}
]
}
], - "rcrCurrent": [
- "string"
], - "rcrHistory": [
- {
- "reportType": "UNSPECIFIED",
- "runwayLines": [
- "string"
], - "time": "2019-08-24T14:15:22Z"
}
], - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwaySenseTimestamp": "2019-08-24T14:15:22Z",
- "runways": [
- {
- "adjacentSnowbanks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "chemicalTreatment": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "clearedLength": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "clearedWidth": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "deicingChemical": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "UNSPECIFIED_OR_OTHER"
]
}, - "driftingSnow": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "frozenSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "ignored": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "landingDirection": "LR",
- "looseSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "observationTime": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwayId": "string",
- "snowDrifts": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "temperature": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "unit": "TEMPERATURE_UNIT_UNSPECIFIED",
- "value": 0
}, - "windrows": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "zoneA": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneB": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneC": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}
}
], - "rwis": [
- {
- "rwisData": {
- "airTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "airTemperatureMax": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "airTemperatureMin": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "chemicalAmount": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "frostPointTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "hailIntensity": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "iceLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "presentWeather": "TYPE_UNKNOWN",
- "rainAccumulation": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "rainIntensity": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "snowAccumulation": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "snowLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "subSurfaceTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceGrip": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceState": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "waterDepth": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "waterLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "weatherStationId": "string",
- "weatherStationLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "windDirection": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windGustDirection": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windSpeed": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windSpeedMax": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}
}, - "timestamp": "2019-08-24T14:15:22Z"
}
], - "sequence": "string",
- "significantChangeStatus": "SIGNIFICANT_CHANGE_STATUS_UNSPECIFIED",
- "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "taxiways": [
- {
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "taxiwayId": "string"
}
], - "textPreview": "string",
- "updatedTimestamp": "2019-08-24T14:15:22Z"
}, - "atisPreview": "string",
- "csvPreview": "string",
- "pdfPreview": "string",
- "pirepSummary": {
- "recentPireps": [
- {
- "aircraftIdentification": "A12B",
- "brakingAction": "BRAKING_ACTION_UNSPECIFIED",
- "flightNumber": "AB1234",
- "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "runwayId": "01-19L",
- "time": "2019-08-24T14:15:22Z"
}
], - "runwaySummaries": {
- "property1": {
- "latestReport": {
- "aircraftIdentification": "A12B",
- "brakingAction": "BRAKING_ACTION_UNSPECIFIED",
- "flightNumber": "AB1234",
- "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "runwayId": "01-19L",
- "time": "2019-08-24T14:15:22Z"
}, - "minReport": {
- "aircraftIdentification": "A12B",
- "brakingAction": "BRAKING_ACTION_UNSPECIFIED",
- "flightNumber": "AB1234",
- "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "runwayId": "01-19L",
- "time": "2019-08-24T14:15:22Z"
}, - "pirepSigChange": "STATUS_UNSPECIFIED",
- "runwayId": "string"
}, - "property2": {
- "latestReport": {
- "aircraftIdentification": "A12B",
- "brakingAction": "BRAKING_ACTION_UNSPECIFIED",
- "flightNumber": "AB1234",
- "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "runwayId": "01-19L",
- "time": "2019-08-24T14:15:22Z"
}, - "minReport": {
- "aircraftIdentification": "A12B",
- "brakingAction": "BRAKING_ACTION_UNSPECIFIED",
- "flightNumber": "AB1234",
- "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "runwayId": "01-19L",
- "time": "2019-08-24T14:15:22Z"
}, - "pirepSigChange": "STATUS_UNSPECIFIED",
- "runwayId": "string"
}
}
}, - "plausibilityAnalysis": [
- {
- "type": "PLAUSIBILITY_ANALYSIS_UNSPECIFIED",
- "warnings": [
- {
- "apronId": "string",
- "conditionWarning": {
- "contaminationDepthFirst": 0,
- "contaminationDepthSecond": 0,
- "coveragePercFirst": 0,
- "coveragePercSecond": 0,
- "surfaceDescriptionFirst": "DRY",
- "surfaceDescriptionSecond": "DRY",
- "thresholdCover": 0,
- "thresholdDepth": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "reason": "PLAUSIBILITY_WARNING_REASON_UNSPECIFIED",
- "runwayId": "string",
- "runwayZone": "ZONE_UNSPECIFIED",
- "rwyccWarning": {
- "rwyccFirst": "RWYCC_0",
- "rwyccSecond": "RWYCC_0",
- "threshold": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "taxiwayId": "string",
- "tempWarning": {
- "median": 0,
- "runwayTemperature": 0,
- "threshold": 0,
- "unit": "TEMPERATURE_UNIT_UNSPECIFIED"
}
}
]
}
], - "rcrCurrent": [
- "string"
], - "rcrHistory": [
- {
- "reportType": "UNSPECIFIED",
- "runwayLines": [
- "string"
], - "time": "2019-08-24T14:15:22Z"
}
], - "remainingValidityMinutes": 0,
- "significantChangeStatus": "SIGNIFICANT_CHANGE_STATUS_UNSPECIFIED",
- "textPreview": "string"
}
}| aerodromeId required | string |
Array of objects (Taxiway assessments) | |||||||||||
Array
| |||||||||||
{- "taxiways": [
- {
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "taxiwayId": "string"
}
]
}{ }| aerodromeId required | string |
| runwayId required | string |
| sinceHours | integer <int32> Number of hours to look back, defaults to 24 |
Array of objects (Imported runway report from external source, such as sensor data) | |||||||||
Array
| |||||||||
{- "imports": [
- {
- "description": "string",
- "runway": {
- "adjacentSnowbanks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "chemicalTreatment": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "clearedLength": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "clearedWidth": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "deicingChemical": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "UNSPECIFIED_OR_OTHER"
]
}, - "driftingSnow": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "frozenSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "ignored": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "landingDirection": "LR",
- "looseSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "observationTime": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwayId": "string",
- "snowDrifts": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "temperature": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "unit": "TEMPERATURE_UNIT_UNSPECIFIED",
- "value": 0
}, - "windrows": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "zoneA": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneB": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneC": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}
}, - "source": "string",
- "timestamp": "2019-08-24T14:15:22Z"
}
]
}Airside Sync can accept condition data from third party providers, which can
then be selected for import in the app. Only fields with the metadata
op UPDATE_SET or UPDATE_CLEAR are applied on import.
| aerodromeId required | string |
| runwayId required | string |
| description | string | ||||||||||||||||||||||||||||||||||||||||||||
object (Runway assessments) | |||||||||||||||||||||||||||||||||||||||||||||
| |||||||||||||||||||||||||||||||||||||||||||||
| source | string | ||||||||||||||||||||||||||||||||||||||||||||
| timestamp | string <date-time> | ||||||||||||||||||||||||||||||||||||||||||||
{- "description": "string",
- "runway": {
- "adjacentSnowbanks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "chemicalTreatment": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "clearedLength": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "clearedWidth": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "deicingChemical": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "UNSPECIFIED_OR_OTHER"
]
}, - "driftingSnow": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "frozenSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "ignored": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "landingDirection": "LR",
- "looseSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "observationTime": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwayId": "string",
- "snowDrifts": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "temperature": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "unit": "TEMPERATURE_UNIT_UNSPECIFIED",
- "value": 0
}, - "windrows": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "zoneA": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneB": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneC": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}
}, - "source": "string",
- "timestamp": "2019-08-24T14:15:22Z"
}{ }List the METAR reports for a given aerodrome for a given date.
| aerodromeId required | string |
| date | string <date-time> |
Array of objects (METAR) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
{- "metars": [
- {
- "altimInHg": 0.1,
- "dewpointC": 0.1,
- "elevationM": 0.1,
- "flightCategory": "string",
- "latitude": 0.1,
- "longitude": 0.1,
- "maxt24hrC": 0.1,
- "maxtC": 0.1,
- "metarType": "string",
- "mint24hrC": 0.1,
- "mintC": 0.1,
- "observationTime": "2019-08-24T14:15:22Z",
- "precip24hrIn": 0.1,
- "precip3hrIn": 0.1,
- "precip6hrIn": 0.1,
- "precipIn": 0.1,
- "rawText": "string",
- "seaLevelPressureMb": 0.1,
- "skyCondition": [
- {
- "cloudBaseFtAgl": 0,
- "cloudType": "SKY_COVER_UNKNOWN",
- "deprecatedSkyCover": "string"
}
], - "snowIn": 0.1,
- "stationId": "string",
- "tempC": 0.1,
- "threeHrPressureTendencyMb": 0.1,
- "vertVisFt": 0,
- "visibilityStatuteMi": 0.1,
- "weatherCondition": [
- {
- "intensity": "INTENSITY_UNKNOWN",
- "weatherCategory": "CATEGORY_UNKNOWN",
- "weatherType": [
- "TYPE_UNKNOWN"
]
}
], - "windDirDegrees": 0,
- "windDirVariable": true,
- "windGustKt": 0,
- "windSpeedKt": 0,
- "wxString": "string"
}
]
}Store or update a registration token. The user will receive push notifications.
| aerodromeId required | string |
| deviceId | string |
| registrationToken | string |
{- "deviceId": "string",
- "registrationToken": "string"
}{ }The user will no longer receive push notifications. The token will not be removed. Calling "StoreToken" again will re-map the user to the token.
| aerodromeId required | string |
| deviceId | string |
{- "deviceId": "string"
}{ }Create and and store a pilot report. The report to file is supplied as body.
| aerodromeId required | string |
| aircraftIdentification | string (Aircraft identification number) |
| brakingAction | string (Experienced braking action) Default: "BRAKING_ACTION_UNSPECIFIED" Enum: "BRAKING_ACTION_UNSPECIFIED" "BRAKING_ACTION_GOOD" "BRAKING_ACTION_GOOD_TO_MEDIUM" "BRAKING_ACTION_MEDIUM" "BRAKING_ACTION_MEDIUM_TO_POOR" "BRAKING_ACTION_POOR" "BRAKING_ACTION_LESS_THAN_POOR" |
| flightNumber | string (Landing flight number) |
| runwayId | string (Landing runway ID) |
| time | string <date-time> (Reported time of the PIREP) |
{- "aircraftIdentification": "A12B",
- "brakingAction": "BRAKING_ACTION_UNSPECIFIED",
- "flightNumber": "AB1234",
- "runwayId": "01-19L",
- "time": "2019-08-24T14:15:22Z"
}{ }List the pilot reports for a given aerodrome for a given number of days into the past.
| aerodromeId required | string |
| sinceDays required | integer <int32> |
Array of objects (PIREP) | |||||||||||||||||
Array
| |||||||||||||||||
{- "pireps": [
- {
- "aircraftIdentification": "A12B",
- "brakingAction": "BRAKING_ACTION_UNSPECIFIED",
- "flightNumber": "AB1234",
- "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "runwayId": "01-19L",
- "time": "2019-08-24T14:15:22Z"
}
]
}List the pilot reports for a given aerodrome for a given year.
| aerodromeId required | string |
| year required | integer <int32> |
Array of objects (PIREP) | |||||||||||||||||
Array
| |||||||||||||||||
{- "pireps": [
- {
- "aircraftIdentification": "A12B",
- "brakingAction": "BRAKING_ACTION_UNSPECIFIED",
- "flightNumber": "AB1234",
- "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "runwayId": "01-19L",
- "time": "2019-08-24T14:15:22Z"
}
]
}Create and publish a new SNOWTAM, RCR, or ATIS (according to the given format) and send it out using specified methods. The created report is returned.
| aerodromeId required | string |
| format | string (PublishReportFormat) Default: "UNSPECIFIED" Enum: "UNSPECIFIED" "RCR" "SNOWTAM" "ATIS" "CUSTOM_FORM" "TASK" |
| methods | Array of strings (PublishReportMethod) Items Enum: "METHOD_UNSPECIFIED" "AFTN" "FAX" "NAVCANADA" "EMAIL" "SMS" |
| updateTime | boolean |
object (AerodromeReport) | |||||||||||||||||
| |||||||||||||||||
Array of objects (PublishReportResult) | |||||||||||||||||
Array
| |||||||||||||||||
{- "format": "UNSPECIFIED",
- "methods": [
- "METHOD_UNSPECIFIED"
], - "updateTime": true
}{- "report": {
- "aerodrome": {
- "aerodromeId": "string",
- "aircraftStands": [
- {
- "fields": [
- {
- "fieldId": "string",
- "value": {
- "boolValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- null
], - "maxSelectedItems": 0,
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "selection": [
- null
]
}, - "stringValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": "string"
}
}
}
], - "objectId": "string",
- "team": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}
}
], - "aprons": [
- {
- "apronId": "string",
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}
}
], - "atisPreview": "string",
- "csvPreview": "string",
- "metar": {
- "altimInHg": 0.1,
- "dewpointC": 0.1,
- "elevationM": 0.1,
- "flightCategory": "string",
- "latitude": 0.1,
- "longitude": 0.1,
- "maxt24hrC": 0.1,
- "maxtC": 0.1,
- "metarType": "string",
- "mint24hrC": 0.1,
- "mintC": 0.1,
- "observationTime": "2019-08-24T14:15:22Z",
- "precip24hrIn": 0.1,
- "precip3hrIn": 0.1,
- "precip6hrIn": 0.1,
- "precipIn": 0.1,
- "rawText": "string",
- "seaLevelPressureMb": 0.1,
- "skyCondition": [
- {
- "cloudBaseFtAgl": 0,
- "cloudType": "SKY_COVER_UNKNOWN",
- "deprecatedSkyCover": "string"
}
], - "snowIn": 0.1,
- "stationId": "string",
- "tempC": 0.1,
- "threeHrPressureTendencyMb": 0.1,
- "vertVisFt": 0,
- "visibilityStatuteMi": 0.1,
- "weatherCondition": [
- {
- "intensity": "INTENSITY_UNKNOWN",
- "weatherCategory": "CATEGORY_UNKNOWN",
- "weatherType": [
- "TYPE_UNKNOWN"
]
}
], - "windDirDegrees": 0,
- "windDirVariable": true,
- "windGustKt": 0,
- "windSpeedKt": 0,
- "wxString": "string"
}, - "pdfPreview": "string",
- "plausibilityAnalysis": [
- {
- "type": "PLAUSIBILITY_ANALYSIS_UNSPECIFIED",
- "warnings": [
- {
- "apronId": "string",
- "conditionWarning": {
- "contaminationDepthFirst": 0,
- "contaminationDepthSecond": 0,
- "coveragePercFirst": 0,
- "coveragePercSecond": 0,
- "surfaceDescriptionFirst": "DRY",
- "surfaceDescriptionSecond": "DRY",
- "thresholdCover": 0,
- "thresholdDepth": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "reason": "PLAUSIBILITY_WARNING_REASON_UNSPECIFIED",
- "runwayId": "string",
- "runwayZone": "ZONE_UNSPECIFIED",
- "rwyccWarning": {
- "rwyccFirst": "RWYCC_0",
- "rwyccSecond": "RWYCC_0",
- "threshold": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "taxiwayId": "string",
- "tempWarning": {
- "median": 0,
- "runwayTemperature": 0,
- "threshold": 0,
- "unit": "TEMPERATURE_UNIT_UNSPECIFIED"
}
}
]
}
], - "rcrCurrent": [
- "string"
], - "rcrHistory": [
- {
- "reportType": "UNSPECIFIED",
- "runwayLines": [
- "string"
], - "time": "2019-08-24T14:15:22Z"
}
], - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwaySenseTimestamp": "2019-08-24T14:15:22Z",
- "runways": [
- {
- "adjacentSnowbanks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "chemicalTreatment": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "clearedLength": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "clearedWidth": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "deicingChemical": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "UNSPECIFIED_OR_OTHER"
]
}, - "driftingSnow": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "frozenSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "ignored": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "landingDirection": "LR",
- "looseSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "observationTime": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwayId": "string",
- "snowDrifts": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "temperature": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "unit": "TEMPERATURE_UNIT_UNSPECIFIED",
- "value": 0
}, - "windrows": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "zoneA": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneB": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneC": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}
}
], - "rwis": [
- {
- "rwisData": {
- "airTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "airTemperatureMax": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "airTemperatureMin": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "chemicalAmount": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "frostPointTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "hailIntensity": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "iceLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "presentWeather": "TYPE_UNKNOWN",
- "rainAccumulation": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "rainIntensity": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "snowAccumulation": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "snowLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "subSurfaceTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceGrip": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceState": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "waterDepth": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "waterLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "weatherStationId": "string",
- "weatherStationLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "windDirection": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windGustDirection": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windSpeed": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windSpeedMax": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}
}, - "timestamp": "2019-08-24T14:15:22Z"
}
], - "sequence": "string",
- "significantChangeStatus": "SIGNIFICANT_CHANGE_STATUS_UNSPECIFIED",
- "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "taxiways": [
- {
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "taxiwayId": "string"
}
], - "textPreview": "string",
- "updatedTimestamp": "2019-08-24T14:15:22Z"
}, - "customForm": {
- "customFormId": "string",
- "description": "string",
- "fields": [
- {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "description": "string",
- "fieldId": "string",
- "htmlLabel": {
- "html": "string"
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "label": "string",
- "mapPointValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "moodSet": "MOOD_NEUTRAL",
- "moodUnset": "MOOD_NEUTRAL",
- "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "photosValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "photoIds": [
- "string"
]
}, - "required": true,
- "requiredWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "timeValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "visibleWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
], - "iconData": "string",
- "languageCode": "string",
- "persistent": true,
- "tileset": "TILESET_UNSPECIFIED",
- "title": "string"
}, - "formattedAtis": "string",
- "formattedCsv": "string",
- "formattedPdf": "string",
- "formattedPdfBlobKey": "string",
- "formattedText": "string",
- "meta": {
- "aerodromeId": "string",
- "customFormId": "string",
- "format": "UNSPECIFIED",
- "mapPoint": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "sequence": 0,
- "status": [
- {
- "delivered": "2019-08-24T14:15:22Z",
- "error": "string",
- "failed": "2019-08-24T14:15:22Z",
- "method": "METHOD_UNSPECIFIED",
- "recipient": "string",
- "sent": "2019-08-24T14:15:22Z"
}
], - "year": 0
}
}, - "results": [
- {
- "error": "string",
- "method": "METHOD_UNSPECIFIED",
- "success": true
}
]
}Get a specific published report for the given aerodrome based on the report ID.
| aerodromeId required | string |
| reportId required | string |
| withPdf | boolean |
object (AerodromeReport) | |||||||||||||||||
| |||||||||||||||||
{- "report": {
- "aerodrome": {
- "aerodromeId": "string",
- "aircraftStands": [
- {
- "fields": [
- {
- "fieldId": "string",
- "value": {
- "boolValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- null
], - "maxSelectedItems": 0,
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "selection": [
- null
]
}, - "stringValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": "string"
}
}
}
], - "objectId": "string",
- "team": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}
}
], - "aprons": [
- {
- "apronId": "string",
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}
}
], - "atisPreview": "string",
- "csvPreview": "string",
- "metar": {
- "altimInHg": 0.1,
- "dewpointC": 0.1,
- "elevationM": 0.1,
- "flightCategory": "string",
- "latitude": 0.1,
- "longitude": 0.1,
- "maxt24hrC": 0.1,
- "maxtC": 0.1,
- "metarType": "string",
- "mint24hrC": 0.1,
- "mintC": 0.1,
- "observationTime": "2019-08-24T14:15:22Z",
- "precip24hrIn": 0.1,
- "precip3hrIn": 0.1,
- "precip6hrIn": 0.1,
- "precipIn": 0.1,
- "rawText": "string",
- "seaLevelPressureMb": 0.1,
- "skyCondition": [
- {
- "cloudBaseFtAgl": 0,
- "cloudType": "SKY_COVER_UNKNOWN",
- "deprecatedSkyCover": "string"
}
], - "snowIn": 0.1,
- "stationId": "string",
- "tempC": 0.1,
- "threeHrPressureTendencyMb": 0.1,
- "vertVisFt": 0,
- "visibilityStatuteMi": 0.1,
- "weatherCondition": [
- {
- "intensity": "INTENSITY_UNKNOWN",
- "weatherCategory": "CATEGORY_UNKNOWN",
- "weatherType": [
- "TYPE_UNKNOWN"
]
}
], - "windDirDegrees": 0,
- "windDirVariable": true,
- "windGustKt": 0,
- "windSpeedKt": 0,
- "wxString": "string"
}, - "pdfPreview": "string",
- "plausibilityAnalysis": [
- {
- "type": "PLAUSIBILITY_ANALYSIS_UNSPECIFIED",
- "warnings": [
- {
- "apronId": "string",
- "conditionWarning": {
- "contaminationDepthFirst": 0,
- "contaminationDepthSecond": 0,
- "coveragePercFirst": 0,
- "coveragePercSecond": 0,
- "surfaceDescriptionFirst": "DRY",
- "surfaceDescriptionSecond": "DRY",
- "thresholdCover": 0,
- "thresholdDepth": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "reason": "PLAUSIBILITY_WARNING_REASON_UNSPECIFIED",
- "runwayId": "string",
- "runwayZone": "ZONE_UNSPECIFIED",
- "rwyccWarning": {
- "rwyccFirst": "RWYCC_0",
- "rwyccSecond": "RWYCC_0",
- "threshold": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "taxiwayId": "string",
- "tempWarning": {
- "median": 0,
- "runwayTemperature": 0,
- "threshold": 0,
- "unit": "TEMPERATURE_UNIT_UNSPECIFIED"
}
}
]
}
], - "rcrCurrent": [
- "string"
], - "rcrHistory": [
- {
- "reportType": "UNSPECIFIED",
- "runwayLines": [
- "string"
], - "time": "2019-08-24T14:15:22Z"
}
], - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwaySenseTimestamp": "2019-08-24T14:15:22Z",
- "runways": [
- {
- "adjacentSnowbanks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "chemicalTreatment": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "clearedLength": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "clearedWidth": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "deicingChemical": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "UNSPECIFIED_OR_OTHER"
]
}, - "driftingSnow": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "frozenSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "ignored": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "landingDirection": "LR",
- "looseSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "observationTime": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwayId": "string",
- "snowDrifts": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "temperature": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "unit": "TEMPERATURE_UNIT_UNSPECIFIED",
- "value": 0
}, - "windrows": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "zoneA": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneB": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneC": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}
}
], - "rwis": [
- {
- "rwisData": {
- "airTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "airTemperatureMax": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "airTemperatureMin": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "chemicalAmount": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "frostPointTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "hailIntensity": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "iceLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "presentWeather": "TYPE_UNKNOWN",
- "rainAccumulation": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "rainIntensity": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "snowAccumulation": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "snowLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "subSurfaceTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceGrip": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceState": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "waterDepth": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "waterLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "weatherStationId": "string",
- "weatherStationLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "windDirection": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windGustDirection": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windSpeed": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windSpeedMax": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}
}, - "timestamp": "2019-08-24T14:15:22Z"
}
], - "sequence": "string",
- "significantChangeStatus": "SIGNIFICANT_CHANGE_STATUS_UNSPECIFIED",
- "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "taxiways": [
- {
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "taxiwayId": "string"
}
], - "textPreview": "string",
- "updatedTimestamp": "2019-08-24T14:15:22Z"
}, - "customForm": {
- "customFormId": "string",
- "description": "string",
- "fields": [
- {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "description": "string",
- "fieldId": "string",
- "htmlLabel": {
- "html": "string"
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "label": "string",
- "mapPointValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "moodSet": "MOOD_NEUTRAL",
- "moodUnset": "MOOD_NEUTRAL",
- "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "photosValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "photoIds": [
- "string"
]
}, - "required": true,
- "requiredWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "timeValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "visibleWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
], - "iconData": "string",
- "languageCode": "string",
- "persistent": true,
- "tileset": "TILESET_UNSPECIFIED",
- "title": "string"
}, - "formattedAtis": "string",
- "formattedCsv": "string",
- "formattedPdf": "string",
- "formattedPdfBlobKey": "string",
- "formattedText": "string",
- "meta": {
- "aerodromeId": "string",
- "customFormId": "string",
- "format": "UNSPECIFIED",
- "mapPoint": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "sequence": 0,
- "status": [
- {
- "delivered": "2019-08-24T14:15:22Z",
- "error": "string",
- "failed": "2019-08-24T14:15:22Z",
- "method": "METHOD_UNSPECIFIED",
- "recipient": "string",
- "sent": "2019-08-24T14:15:22Z"
}
], - "year": 0
}
}
}Get the latest published SNOWTAM for the given aerodrome.
| aerodromeId required | string |
object (AerodromeReport) | |||||||||||||||||
| |||||||||||||||||
{- "report": {
- "aerodrome": {
- "aerodromeId": "string",
- "aircraftStands": [
- {
- "fields": [
- {
- "fieldId": "string",
- "value": {
- "boolValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": true
}, - "intValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": 0
}, - "nOfValue": {
- "choices": [
- null
], - "maxSelectedItems": 0,
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "selection": [
- null
]
}, - "stringValue": {
- "meta": {
- "op": null,
- "time": null,
- "user": null
}, - "value": "string"
}
}
}
], - "objectId": "string",
- "team": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}
}
], - "aprons": [
- {
- "apronId": "string",
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}
}
], - "atisPreview": "string",
- "csvPreview": "string",
- "metar": {
- "altimInHg": 0.1,
- "dewpointC": 0.1,
- "elevationM": 0.1,
- "flightCategory": "string",
- "latitude": 0.1,
- "longitude": 0.1,
- "maxt24hrC": 0.1,
- "maxtC": 0.1,
- "metarType": "string",
- "mint24hrC": 0.1,
- "mintC": 0.1,
- "observationTime": "2019-08-24T14:15:22Z",
- "precip24hrIn": 0.1,
- "precip3hrIn": 0.1,
- "precip6hrIn": 0.1,
- "precipIn": 0.1,
- "rawText": "string",
- "seaLevelPressureMb": 0.1,
- "skyCondition": [
- {
- "cloudBaseFtAgl": 0,
- "cloudType": "SKY_COVER_UNKNOWN",
- "deprecatedSkyCover": "string"
}
], - "snowIn": 0.1,
- "stationId": "string",
- "tempC": 0.1,
- "threeHrPressureTendencyMb": 0.1,
- "vertVisFt": 0,
- "visibilityStatuteMi": 0.1,
- "weatherCondition": [
- {
- "intensity": "INTENSITY_UNKNOWN",
- "weatherCategory": "CATEGORY_UNKNOWN",
- "weatherType": [
- "TYPE_UNKNOWN"
]
}
], - "windDirDegrees": 0,
- "windDirVariable": true,
- "windGustKt": 0,
- "windSpeedKt": 0,
- "wxString": "string"
}, - "pdfPreview": "string",
- "plausibilityAnalysis": [
- {
- "type": "PLAUSIBILITY_ANALYSIS_UNSPECIFIED",
- "warnings": [
- {
- "apronId": "string",
- "conditionWarning": {
- "contaminationDepthFirst": 0,
- "contaminationDepthSecond": 0,
- "coveragePercFirst": 0,
- "coveragePercSecond": 0,
- "surfaceDescriptionFirst": "DRY",
- "surfaceDescriptionSecond": "DRY",
- "thresholdCover": 0,
- "thresholdDepth": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "reason": "PLAUSIBILITY_WARNING_REASON_UNSPECIFIED",
- "runwayId": "string",
- "runwayZone": "ZONE_UNSPECIFIED",
- "rwyccWarning": {
- "rwyccFirst": "RWYCC_0",
- "rwyccSecond": "RWYCC_0",
- "threshold": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "taxiwayId": "string",
- "tempWarning": {
- "median": 0,
- "runwayTemperature": 0,
- "threshold": 0,
- "unit": "TEMPERATURE_UNIT_UNSPECIFIED"
}
}
]
}
], - "rcrCurrent": [
- "string"
], - "rcrHistory": [
- {
- "reportType": "UNSPECIFIED",
- "runwayLines": [
- "string"
], - "time": "2019-08-24T14:15:22Z"
}
], - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwaySenseTimestamp": "2019-08-24T14:15:22Z",
- "runways": [
- {
- "adjacentSnowbanks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "chemicalTreatment": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "clearedLength": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "clearedWidth": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "deicingChemical": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "UNSPECIFIED_OR_OTHER"
]
}, - "driftingSnow": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "frozenSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "ignored": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "landingDirection": "LR",
- "looseSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "observationTime": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwayId": "string",
- "snowDrifts": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "temperature": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "unit": "TEMPERATURE_UNIT_UNSPECIFIED",
- "value": 0
}, - "windrows": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "zoneA": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneB": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneC": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}
}
], - "rwis": [
- {
- "rwisData": {
- "airTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "airTemperatureMax": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "airTemperatureMin": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "chemicalAmount": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "frostPointTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "hailIntensity": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "iceLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "presentWeather": "TYPE_UNKNOWN",
- "rainAccumulation": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "rainIntensity": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "snowAccumulation": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "snowLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "subSurfaceTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceGrip": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceState": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "waterDepth": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "waterLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "weatherStationId": "string",
- "weatherStationLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "windDirection": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windGustDirection": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windSpeed": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windSpeedMax": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}
}, - "timestamp": "2019-08-24T14:15:22Z"
}
], - "sequence": "string",
- "significantChangeStatus": "SIGNIFICANT_CHANGE_STATUS_UNSPECIFIED",
- "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "taxiways": [
- {
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "taxiwayId": "string"
}
], - "textPreview": "string",
- "updatedTimestamp": "2019-08-24T14:15:22Z"
}, - "customForm": {
- "customFormId": "string",
- "description": "string",
- "fields": [
- {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "description": "string",
- "fieldId": "string",
- "htmlLabel": {
- "html": "string"
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "label": "string",
- "mapPointValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "moodSet": "MOOD_NEUTRAL",
- "moodUnset": "MOOD_NEUTRAL",
- "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "photosValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "photoIds": [
- "string"
]
}, - "required": true,
- "requiredWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "timeValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "visibleWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
], - "iconData": "string",
- "languageCode": "string",
- "persistent": true,
- "tileset": "TILESET_UNSPECIFIED",
- "title": "string"
}, - "formattedAtis": "string",
- "formattedCsv": "string",
- "formattedPdf": "string",
- "formattedPdfBlobKey": "string",
- "formattedText": "string",
- "meta": {
- "aerodromeId": "string",
- "customFormId": "string",
- "format": "UNSPECIFIED",
- "mapPoint": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "sequence": 0,
- "status": [
- {
- "delivered": "2019-08-24T14:15:22Z",
- "error": "string",
- "failed": "2019-08-24T14:15:22Z",
- "method": "METHOD_UNSPECIFIED",
- "recipient": "string",
- "sent": "2019-08-24T14:15:22Z"
}
], - "year": 0
}
}
}Returns a stream of reports as they happen, beginning with the last one to be published. Optionally filtered to specific report formats using the formats parameter.
| aerodromeId required | string |
| formats | Array of strings (PublishReportFormat) Items Enum: "UNSPECIFIED" "RCR" "SNOWTAM" "ATIS" "CUSTOM_FORM" "TASK" |
object (rpcStatus) | |||||||
| |||||||
object (WatchAerodromeReportResponse) | |||||||
| |||||||
{- "formats": [
- "UNSPECIFIED"
]
}{- "error": {
- "code": 0,
- "details": [
- {
- "@type": "string",
- "property1": null,
- "property2": null
}
], - "message": "string"
}, - "result": {
- "report": {
- "aerodrome": {
- "aerodromeId": "string",
- "aircraftStands": [
- {
- "fields": [
- {
- "fieldId": "string",
- "value": {
- "boolValue": {
- "meta": null,
- "value": null
}, - "intValue": {
- "meta": null,
- "value": null
}, - "nOfValue": {
- "choices": [ ],
- "maxSelectedItems": null,
- "meta": null,
- "selection": [ ]
}, - "stringValue": {
- "meta": null,
- "value": null
}
}
}
], - "objectId": "string",
- "team": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}
}
], - "aprons": [
- {
- "apronId": "string",
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}
}
], - "atisPreview": "string",
- "csvPreview": "string",
- "metar": {
- "altimInHg": 0.1,
- "dewpointC": 0.1,
- "elevationM": 0.1,
- "flightCategory": "string",
- "latitude": 0.1,
- "longitude": 0.1,
- "maxt24hrC": 0.1,
- "maxtC": 0.1,
- "metarType": "string",
- "mint24hrC": 0.1,
- "mintC": 0.1,
- "observationTime": "2019-08-24T14:15:22Z",
- "precip24hrIn": 0.1,
- "precip3hrIn": 0.1,
- "precip6hrIn": 0.1,
- "precipIn": 0.1,
- "rawText": "string",
- "seaLevelPressureMb": 0.1,
- "skyCondition": [
- {
- "cloudBaseFtAgl": 0,
- "cloudType": "SKY_COVER_UNKNOWN",
- "deprecatedSkyCover": "string"
}
], - "snowIn": 0.1,
- "stationId": "string",
- "tempC": 0.1,
- "threeHrPressureTendencyMb": 0.1,
- "vertVisFt": 0,
- "visibilityStatuteMi": 0.1,
- "weatherCondition": [
- {
- "intensity": "INTENSITY_UNKNOWN",
- "weatherCategory": "CATEGORY_UNKNOWN",
- "weatherType": [
- "TYPE_UNKNOWN"
]
}
], - "windDirDegrees": 0,
- "windDirVariable": true,
- "windGustKt": 0,
- "windSpeedKt": 0,
- "wxString": "string"
}, - "pdfPreview": "string",
- "plausibilityAnalysis": [
- {
- "type": "PLAUSIBILITY_ANALYSIS_UNSPECIFIED",
- "warnings": [
- {
- "apronId": "string",
- "conditionWarning": {
- "contaminationDepthFirst": 0,
- "contaminationDepthSecond": 0,
- "coveragePercFirst": 0,
- "coveragePercSecond": 0,
- "surfaceDescriptionFirst": "DRY",
- "surfaceDescriptionSecond": "DRY",
- "thresholdCover": 0,
- "thresholdDepth": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "reason": "PLAUSIBILITY_WARNING_REASON_UNSPECIFIED",
- "runwayId": "string",
- "runwayZone": "ZONE_UNSPECIFIED",
- "rwyccWarning": {
- "rwyccFirst": "RWYCC_0",
- "rwyccSecond": "RWYCC_0",
- "threshold": 0,
- "zoneFirst": "ZONE_UNSPECIFIED",
- "zoneSecond": "ZONE_UNSPECIFIED"
}, - "taxiwayId": "string",
- "tempWarning": {
- "median": 0,
- "runwayTemperature": 0,
- "threshold": 0,
- "unit": "TEMPERATURE_UNIT_UNSPECIFIED"
}
}
]
}
], - "rcrCurrent": [
- "string"
], - "rcrHistory": [
- {
- "reportType": "UNSPECIFIED",
- "runwayLines": [
- "string"
], - "time": "2019-08-24T14:15:22Z"
}
], - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwaySenseTimestamp": "2019-08-24T14:15:22Z",
- "runways": [
- {
- "adjacentSnowbanks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "chemicalTreatment": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "clearedLength": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "clearedWidth": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED",
- "value": 0
}, - "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "deicingChemical": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "UNSPECIFIED_OR_OTHER"
]
}, - "driftingSnow": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "frozenSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "ignored": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "landingDirection": "LR",
- "looseSand": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "observationTime": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "remarks": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "runwayId": "string",
- "snowDrifts": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "temperature": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "unit": "TEMPERATURE_UNIT_UNSPECIFIED",
- "value": 0
}, - "windrows": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "zoneA": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneB": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}, - "zoneC": {
- "adjustedRwycc": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "RWYCC_0"
}, - "calculatedRwycc": "RWYCC_0",
- "contaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "contaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "frictionMu": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "runwaySense": {
- "bestRwycc": "RWYCC_0",
- "numLandings": 0,
- "worstRwycc": "RWYCC_0"
}, - "rwyccAdjustReasons": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "CHANGE_REASON_TEMPERATURE"
]
}, - "secondContaminationCoverPct": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondContaminationDepthMm": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "secondSurfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}, - "surfaceDescription": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "DRY"
}
}
}
], - "rwis": [
- {
- "rwisData": {
- "airTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "airTemperatureMax": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "airTemperatureMin": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "chemicalAmount": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "frostPointTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "hailIntensity": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "iceLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "presentWeather": "TYPE_UNKNOWN",
- "rainAccumulation": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "rainIntensity": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "snowAccumulation": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "snowLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "subSurfaceTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceGrip": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceState": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "surfaceTemperature": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "waterDepth": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "waterLayerThickness": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "weatherStationId": "string",
- "weatherStationLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "windDirection": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windGustDirection": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windSpeed": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}, - "windSpeedMax": {
- "sensorId": "string",
- "sensorLocation": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "unit": "RWIS_UNIT_UNKNOWN",
- "value": 0.1
}
}, - "timestamp": "2019-08-24T14:15:22Z"
}
], - "sequence": "string",
- "significantChangeStatus": "SIGNIFICANT_CHANGE_STATUS_UNSPECIFIED",
- "stockPhrases": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": [
- "string"
]
}, - "taxiways": [
- {
- "closed": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "silent": true,
- "slipperyOrPoor": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "snowbanks": {
- "distance": 0,
- "heightMm": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "side": "LR",
- "unit": "DISTANCE_UNIT_UNSPECIFIED"
}, - "taxiwayId": "string"
}
], - "textPreview": "string",
- "updatedTimestamp": "2019-08-24T14:15:22Z"
}, - "customForm": {
- "customFormId": "string",
- "description": "string",
- "fields": [
- {
- "boolValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": true
}, - "description": "string",
- "fieldId": "string",
- "htmlLabel": {
- "html": "string"
}, - "intValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": 0
}, - "label": "string",
- "mapPointValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "point": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}
}, - "moodSet": "MOOD_NEUTRAL",
- "moodUnset": "MOOD_NEUTRAL",
- "nOfValue": {
- "choices": [
- "string"
], - "maxSelectedItems": 0,
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "selection": [
- 0
]
}, - "photosValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "photoIds": [
- "string"
]
}, - "required": true,
- "requiredWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}, - "stringValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "string"
}, - "timeValue": {
- "meta": {
- "op": "CLEARED",
- "time": "2019-08-24T14:15:22Z",
- "user": "string"
}, - "value": "2019-08-24T14:15:22Z"
}, - "visibleWhen": {
- "equalsString": [
- "string"
], - "isSet": true,
- "notEqualsString": [
- "string"
], - "otherFieldId": "string"
}
}
], - "iconData": "string",
- "languageCode": "string",
- "persistent": true,
- "tileset": "TILESET_UNSPECIFIED",
- "title": "string"
}, - "formattedAtis": "string",
- "formattedCsv": "string",
- "formattedPdf": "string",
- "formattedPdfBlobKey": "string",
- "formattedText": "string",
- "meta": {
- "aerodromeId": "string",
- "customFormId": "string",
- "format": "UNSPECIFIED",
- "mapPoint": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "sequence": 0,
- "status": [
- {
- "delivered": "2019-08-24T14:15:22Z",
- "error": "string",
- "failed": "2019-08-24T14:15:22Z",
- "method": "METHOD_UNSPECIFIED",
- "recipient": "string",
- "sent": "2019-08-24T14:15:22Z"
}
], - "year": 0
}
}
}
}Lists the years in which reports were published for the given aerodrome.
| aerodromeId required | string |
| years | Array of integers <int32> [ items <int32 > ] |
{- "years": [
- 0
]
}Lists the published reports for the given aerodrome and year.
| aerodromeId required | string |
| year required | integer <int32> |
Array of objects (AerodromeReportMeta) | |||||||||||||||||||||
Array
| |||||||||||||||||||||
{- "reports": [
- {
- "aerodromeId": "string",
- "customFormId": "string",
- "format": "UNSPECIFIED",
- "mapPoint": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "published": "2019-08-24T14:15:22Z",
- "publisher": {
- "displayName": "string",
- "email": "string",
- "userId": "string"
}, - "reportId": "string",
- "sequence": 0,
- "status": [
- {
- "delivered": "2019-08-24T14:15:22Z",
- "error": "string",
- "failed": "2019-08-24T14:15:22Z",
- "method": "METHOD_UNSPECIFIED",
- "recipient": "string",
- "sent": "2019-08-24T14:15:22Z"
}
], - "year": 0
}
]
}Get a specific published report for the given aerodrome based on the report ID, in AIXM format. Only SNOWTAM reports are valid for AIXM.
| aerodromeId required | string |
| reportId required | string |
| withPdf | boolean |
| contentType | string The HTTP Content-Type header value specifying the content type of the body. | ||||
| data | string <byte> The HTTP request/response body as raw binary. | ||||
Array of objects (protobufAny) Application specific response metadata. Must be set in the first response for streaming APIs. | |||||
Array
| |||||
{- "contentType": "string",
- "data": "string",
- "extensions": [
- {
- "@type": "string",
- "property1": null,
- "property2": null
}
]
}Get the latest published SNOWTAM for the given aerodrome in AIXM format.
| aerodromeId required | string |
| contentType | string The HTTP Content-Type header value specifying the content type of the body. | ||||
| data | string <byte> The HTTP request/response body as raw binary. | ||||
Array of objects (protobufAny) Application specific response metadata. Must be set in the first response for streaming APIs. | |||||
Array
| |||||
{- "contentType": "string",
- "data": "string",
- "extensions": [
- {
- "@type": "string",
- "property1": null,
- "property2": null
}
]
}| aerodromeId required | string |
| runwayId required | string |
| sinceHours | integer <int32> Number of hours to look back, defaults to 24 |
Array of objects (ListSensorSessionsResponseSensorSessionListItem) | |||||||||
Array
| |||||||||
{- "sensorSessions": [
- {
- "numMeasurements": 0,
- "runwayId": "string",
- "sessionId": "string",
- "time": "2019-08-24T14:15:22Z"
}
]
}This returns the entire sensor session, with all data points from the sensor plus correlating position data from the device GPS.
| aerodromeId required | string |
| runwayId required | string |
| sessionId required | string |
object (SensorMeasurementLog) | |||||||||||
| |||||||||||
{- "measurementLog": {
- "measurements": [
- {
- "floatData": [
- {
- "type": "MEASUREMENT_UNSPECIFIED",
- "value": 0.1
}
], - "frictionMu": 0,
- "iceDepthMm": 0.1,
- "intData": [
- {
- "type": "MEASUREMENT_UNSPECIFIED",
- "value": 0
}
], - "interpolatedPosition": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "resolvedLocation": {
- "runwayId": "string",
- "zone": "ZONE_UNSPECIFIED"
}, - "sequence": 0,
- "snowDepthMm": 0.1,
- "surface": "DRY",
- "time": "2019-08-24T14:15:22Z",
- "waterDepthMm": 0.1
}
], - "metadata": {
- "items": [
- {
- "key": "string",
- "value": "string"
}
], - "sensorAddress": "string"
}, - "positions": [
- {
- "accuracy": 0.1,
- "altitude": 0.1,
- "latitude": 0.1,
- "longitude": 0.1,
- "sequence": 0,
- "time": "2019-08-24T14:15:22Z"
}
], - "runwayId": "string",
- "sessionId": "string"
}
}List the users who are currently online for the given aerodrome. Requires aerodrome admin permissions.
| aerodromeId required | string |
Array of objects (OnlineUsersOnlineUser) | |||||||||||||||||
Array
| |||||||||||||||||
{- "users": [
- {
- "aerodromeId": "string",
- "build": "string",
- "deadline": "2019-08-24T14:15:22Z",
- "email": "string",
- "instance": "string",
- "platform": "string",
- "started": "2019-08-24T14:15:22Z",
- "userId": "string"
}
]
}Get current system information (version, etc).
object (SystemFeatures) | |||||||||||||
| |||||||||||||
object (LicenseLimits) | |||||||||||||
| |||||||||||||
object (Licensee) | |||||||||||||
| |||||||||||||
| minRecommendedAppVer | string | ||||||||||||
| recommendedAppVer | string | ||||||||||||
| region | string (Region) Default: "EU" Enum: "EU" "US" "AP" "CA" "UK" "IN" "CN" "KR" "BR" Region IDs must be valid DNS labels when used in "$region.app.safe-sky.net", e.g. "EU" will be encoded to "eu.app.safe-sky.net". | ||||||||||||
object (Version) | |||||||||||||
| |||||||||||||
{- "features": {
- "userManagement": true
}, - "licenseLimits": {
- "aerodromeIdPatterns": [
- "string"
], - "optionalFeatures": [
- "NO_OPTIONAL_FEATURE"
]
}, - "licensee": {
- "commonName": "string",
- "country": "string",
- "dnsNames": [
- "string"
], - "locality": "string",
- "organization": "string",
- "organizationalUnit": "string"
}, - "minRecommendedAppVer": "string",
- "recommendedAppVer": "string",
- "region": "EU",
- "version": {
- "buildInfo": "string",
- "buildTime": "string",
- "versionName": "string"
}
}| aerodromeId required | string |
| assignee | string | ||||||
| description | string | ||||||
| owner | string | ||||||
| photoIds | Array of strings | ||||||
object (GPS location) | |||||||
| |||||||
| taskId | string | ||||||
| type | string | ||||||
{- "assignee": "string",
- "description": "string",
- "owner": "string",
- "photoIds": [
- "string"
], - "position": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "taskId": "string",
- "type": "string"
}{ }| aerodromeId required | string |
| sinceDays required | integer <int32> |
Array of objects (TaskData) | |||||||||||||||||||||||||||
Array
| |||||||||||||||||||||||||||
{- "tasks": [
- {
- "assignee": "string",
- "created": "2019-08-24T14:15:22Z",
- "creator": "string",
- "description": "string",
- "notes": [
- {
- "created": "2019-08-24T14:15:22Z",
- "note": "string",
- "noteId": "string",
- "user": "string"
}
], - "owner": "string",
- "photoIds": [
- "string"
], - "position": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "sequence": 0,
- "status": [
- {
- "date": "2019-08-24T14:15:22Z",
- "status": "TASK_STATUS_UNSPECIFIED",
- "user": "string"
}
], - "taskId": "string",
- "type": "string",
- "updated": "2019-08-24T14:15:22Z"
}
]
}| aerodromeId required | string |
| taskId required | string |
object (TaskData) | |||||||||||||||||||||||||||
| |||||||||||||||||||||||||||
{- "task": {
- "assignee": "string",
- "created": "2019-08-24T14:15:22Z",
- "creator": "string",
- "description": "string",
- "notes": [
- {
- "created": "2019-08-24T14:15:22Z",
- "note": "string",
- "noteId": "string",
- "user": "string"
}
], - "owner": "string",
- "photoIds": [
- "string"
], - "position": {
- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}, - "sequence": 0,
- "status": [
- {
- "date": "2019-08-24T14:15:22Z",
- "status": "TASK_STATUS_UNSPECIFIED",
- "user": "string"
}
], - "taskId": "string",
- "type": "string",
- "updated": "2019-08-24T14:15:22Z"
}
}| aerodromeId required | string |
| taskId required | string |
"string"{ }| aerodromeId required | string |
| taskId required | string |
"string"{ }| aerodromeId required | string |
| taskId required | string |
| noteId required | string |
"string"{ }| aerodromeId required | string |
| taskId required | string |
| photoId required | string |
| delete | boolean |
{ }| aerodromeId required | string |
| taskId required | string |
| altitude | number <double> |
| lat | number <double> |
| lon | number <double> |
{- "altitude": 0.1,
- "lat": 0.1,
- "lon": 0.1
}{ }| aerodromeId required | string |
| taskId required | string |
"TASK_STATUS_UNSPECIFIED"{ }The tile name is in OpenStreetMap format: x/y/zoom. The tile data is returned in the HTTP body in png format.
| name required | string.+ |
| tileSet | string Default: "TILESET_UNSPECIFIED" Enum: "TILESET_UNSPECIFIED" "TILESET_LIGHT" "TILESET_DARK" "TILESET_SATELLITE" |
| contentType | string The HTTP Content-Type header value specifying the content type of the body. | ||||
| data | string <byte> The HTTP request/response body as raw binary. | ||||
Array of objects (protobufAny) Application specific response metadata. Must be set in the first response for streaming APIs. | |||||
Array
| |||||
{- "contentType": "string",
- "data": "string",
- "extensions": [
- {
- "@type": "string",
- "property1": null,
- "property2": null
}
]
}The tile name is in OpenStreetMap format: x/y/zoom. The tile data is returned in the HTTP body in png format.
| tileSet required | string Enum: "TILESET_UNSPECIFIED" "TILESET_LIGHT" "TILESET_DARK" "TILESET_SATELLITE" |
| name required | string.+ |
| contentType | string The HTTP Content-Type header value specifying the content type of the body. | ||||
| data | string <byte> The HTTP request/response body as raw binary. | ||||
Array of objects (protobufAny) Application specific response metadata. Must be set in the first response for streaming APIs. | |||||
Array
| |||||
{- "contentType": "string",
- "data": "string",
- "extensions": [
- {
- "@type": "string",
- "property1": null,
- "property2": null
}
]
}