openapi: 3.0.3 info: title: Airbus OneAtlas OneAtlas Radar API version: 1.0.0 contact: email: dl_webservices_geo@airbus.com description: >- OneAtlas Radar API is a powerful tool that allows developers to access and integrate radar satellite data into their applications and processes. By utilizing this API, users can access real-time and historical radar imagery, which can be used for a wide range of applications including agriculture, disaster management, urban planning, and security. The API provides high-resolution radar images that can be used for monitoring changes in land cover, detecting anomalies, and analyzing patterns over time. With OneAtlas Radar API, users can access valuable radar data to enhance their decision-making processes and improve their overall operational efficiency. tags: - name: Sar/Baskets description: | Handle your baskets to order SAR acquisitions. - name: Sar/Config description: | Endpoint for SAR specific user configuration. - name: Sar/Editing description: | Endpoint to modify an SAR acquisition. - name: Sar/Monitoring description: | Monitor your ordered SAR acquisitions. - name: Sar/Prices description: | Query the price of an SAR acquisition. - name: Sar/Replication - name: Sar/Search description: | Endpoint to search for possible SAR acquisitions. - name: Sar/Shopcart description: | Deprecated! Please use baskets instead. - name: User description: | Endpoint for generic user information. servers: - url: https://sar.api.oneatlas.airbus.com/v1 description: OneAtlas - Radar Tasking & Archive paths: /user/whoami: get: summary: Airbus OneAtlas Return Account Information of the Current User tags: - User responses: '200': description: Basic account information content: application/json: schema: type: object properties: username: type: string description: Unique account name example: john.doe@company.com pw_change_needed: type: boolean description: >- This flag is set if the password has been (re)set by the system or flagged for some other reason (e.g. if security standards have changed). It is unrelated to the password expiration date. pw_expiration_date: type: string format: date description: >- If the password of this account is set to expire, this is the end date (included) until which the password can be used to log in without being changed expiration_date: type: string format: date nullable: true description: End date (included) until which the user is able to log in services: type: array items: type: string example: radar enum: - radar - worlddem - mgmt description: The service identifier example: - radar - worlddem registration_status: type: string enum: - pending - in_progress - completed description: >- This flag is only set if the account isn't fully registered oneatlas_username: type: string description: Account username in OneAtlas example: john.doe@company.com '400': description: Bad Request content: application/json: schema: required: - code - message properties: code: type: integer message: type: string '401': description: No authentication information available /sar/config: get: summary: Airbus OneAtlas Retrieve Entire Configuration tags: - Sar/Config responses: '200': description: omnibus configuration content: application/json: schema: type: object properties: permissions: type: object properties: acquisitionOnly: type: boolean leftLooking: type: boolean outOfFullPerformance: type: boolean PAZ: type: boolean required: - acquisitionOnly - leftLooking - outOfFullPerformance - PAZ receivingStations: type: array items: description: Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL orderTemplates: type: array items: type: object properties: name: type: string description: type: string default: type: boolean '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/config/orderTemplates: get: summary: Airbus OneAtlas Retrieve List of Order Templates tags: - Sar/Config responses: '200': description: list of order templates content: application/json: schema: type: array items: type: object properties: name: type: string description: type: string default: type: boolean '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/config/permissions: get: summary: Airbus OneAtlas Get User Permissions tags: - Sar/Config responses: '200': description: user permissions content: application/json: schema: type: object properties: acquisitionOnly: type: boolean leftLooking: type: boolean outOfFullPerformance: type: boolean PAZ: type: boolean required: - acquisitionOnly - leftLooking - outOfFullPerformance - PAZ '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/config/receivingStations: get: summary: Airbus OneAtlas Get Allowed Receiving Stations tags: - Sar/Config responses: '200': description: list of receiving stations content: application/json: schema: type: array items: description: Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/feasibility: post: summary: Airbus OneAtlas Search for Possible Acquisitions for Tasking tags: - Sar/Search requestBody: description: Search parameters required: true content: application/json: schema: type: object additionalProperties: false required: - aoi - time - feasibilityLevel - sensorMode properties: aoi: oneOf: - allOf: - description: Polygon for feasibility search - type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 - allOf: - description: MultiPolygon for feasibility search - type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - MultiPolygon coordinates: type: array minLength: 1 items: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: MultiPolygon coordinates: - - - - 8.346 - 47.788 - - 8.291 - 47.644 - - 8.538 - 47.592 - - 8.62 - 47.75 - - 8.511 - 47.802 - - 8.346 - 47.788 - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 - allOf: - description: Point for feasibility search - type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Point coordinates: type: array minLength: 2 maxLength: 2 items: type: number example: type: Point coordinates: - 9.346 - 47.788 time: allOf: - description: Time range for feasibility search - type: object additionalProperties: false properties: from: type: string format: date-time example: '2021-10-14T13:28:03.569Z' to: type: string format: date-time example: '2021-10-24T13:28:03.569Z' mission: oneOf: - description: Array of Satellite missions type: array items: type: string enum: - TSX - PAZ default: - TSX - PAZ example: - TSX - PAZ - description: Satellite mission type: string default: all enum: - TSX - PAZ - all priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard feasibilityLevel: description: Level of feasibility for the search type: string enum: - simple - complete periodicity: description: >- If set a datastack search will be performed. There will be up to 3 footprints with datastacks (grouped by groupId) taking periodicity and occerrences into account. type: integer enum: - 11 - 22 - 33 - 44 - 55 - 66 - 77 - 88 - 99 occurrences: description: >- If set: Number of times a scene should be acquired. This parameter will only be used if periodicity is set and can be used for the acquisition of datastacks. type: integer minimum: 2 maximum: 50 sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 pathDirection: default: - ascending - descending oneOf: - description: Path or orbit direction type: string default: both example: ascending enum: - ascending - descending - both - description: Path or orbit direction type: array items: type: string enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false orderTemplate: type: string productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false receivingStation: description: Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 example: aoi: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 tags: - Project 1 time: from: '2022-10-14T13:28:03.569Z' to: '2022-10-24T13:28:03.569Z' mission: - TSX - PAZ feasibilityLevel: complete sensorMode: SAR_SM_S polarizationChannels: HH incidenceAngle: minimum: 30 maximum: 50 pathDirection: - ascending - descending lookDirection: R outOfFullPerformance: false orderTemplate: default productType: EEC resolutionVariant: SE acquisitionOnly: false receivingStation: NSG_POOL orbitType: NRT geocodedIncidenceMask: false mapProjection: auto gainAttenuation: 0 responses: '200': description: Possible acquisitions content: application/json: schema: type: object additionalProperties: false required: - type - features properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL - type: object properties: properties: type: object properties: expiry: type: string format: date-time bbox: type: array items: type: number minItems: 4 maxItems: 4 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/catalogue: post: summary: Airbus OneAtlas Search for Possible Acquisitions in Catalogue tags: - Sar/Search requestBody: description: Search parameters required: true content: application/json: schema: type: object additionalProperties: false properties: limit: type: integer minimum: 1 default: 200 aoi: oneOf: - allOf: - description: Polygon for feasibility search - type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 - allOf: - description: MultiPolygon for feasibility search - type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - MultiPolygon coordinates: type: array minLength: 1 items: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: MultiPolygon coordinates: - - - - 8.346 - 47.788 - - 8.291 - 47.644 - - 8.538 - 47.592 - - 8.62 - 47.75 - - 8.511 - 47.802 - - 8.346 - 47.788 - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 - allOf: - description: Point for feasibility search - type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Point coordinates: type: array minLength: 2 maxLength: 2 items: type: number example: type: Point coordinates: - 9.346 - 47.788 catalogueTime: allOf: - description: >- Time range of time an acquisition has been added to the catalogue. - type: object additionalProperties: false properties: from: type: string format: date-time example: '2021-10-14T13:28:03.569Z' to: type: string format: date-time example: '2021-10-24T13:28:03.569Z' time: allOf: - description: Time range of acquisition - type: object additionalProperties: false properties: from: type: string format: date-time example: '2021-10-14T13:28:03.569Z' to: type: string format: date-time example: '2021-10-24T13:28:03.569Z' mission: oneOf: - description: Array of Satellite missions type: array items: type: string enum: - TSX - PAZ default: - TSX - PAZ example: - TSX - PAZ - description: Satellite mission type: string default: all enum: - TSX - PAZ - all satellite: default: all description: Satellite oneOf: - type: string enum: - TSX-1 - PAZ-1 - TDX-1 - all - type: array items: type: string enum: - TSX-1 - PAZ-1 - TDX-1 occurrences: description: 'If set: minimum size of datastacks.' type: integer minimum: 2 sensorMode: default: all oneOf: - description: The imaging/instrument/sensor mode of the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S - all example: SAR_SM_S - description: The imaging/instrument/sensor mode of the acquisition type: array items: type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S polarizationChannels: default: all oneOf: - description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH - all - description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: array items: type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 pathDirection: default: - ascending - descending oneOf: - description: Path or orbit direction type: string default: both example: ascending enum: - ascending - descending - both - description: Path or orbit direction type: array items: type: string enum: - ascending - descending lookDirection: default: - R - L oneOf: - description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L - both - description: >- Look Direction. Left-looking acquisitions require special authorization. type: array items: type: string enum: - R - L beamId: description: Either a valid beam id or array of beam ids or 'all' default: all oneOf: - type: string - type: array items: type: string relativeOrbit: default: all oneOf: - type: string enum: - all - type: integer minimum: 1 maximum: 167 - type: array items: type: integer minimum: 1 maximum: 167 outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false orderTemplate: type: string productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. type: string default: science enum: - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 responses: '200': description: acquisitions in catalogue content: application/json: schema: type: object additionalProperties: false required: - type - features properties: type: type: string enum: - FeatureCollection limit: type: integer minimum: 1 default: 200 total: type: integer features: type: array items: allOf: - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: quality: type: string enum: - OPERATOR_APPROVED - LIMITED_APPROVAL - AUTO_APPROVED - QA_ATTENTION example: AUTO_APPROVED catalogueTime: type: string format: date-time antennaMode: type: string enum: - SRA - DRA datastackCount: type: integer resolution: description: >- Resolution range of the image. Exact values depend on incidence angle and processing parameters. type: object additionalProperties: false properties: minimum: type: number minimum: 0 maximum: 50 example: 3.3 maximum: type: number minimum: 0 maximum: 50 example: 3.9 bbox: type: array items: type: number minItems: 4 maxItems: 4 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/catalogue/retrieve: post: summary: Airbus OneAtlas Retrieve Ordered Items from Catalogue tags: - Sar/Search requestBody: description: items to be retrieved from the catalogue required: true content: application/json: schema: type: object properties: acquisitions: type: array minItems: 1 items: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 items: type: array minItems: 1 items: type: string format: uuid orderTemplate: type: string orderOptions: type: object properties: orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 oneOf: - required: - acquisitions - required: - items responses: '200': description: catalogue items content: application/json: schema: type: object additionalProperties: false required: - type - features properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - allOf: - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: quality: type: string enum: - OPERATOR_APPROVED - LIMITED_APPROVAL - AUTO_APPROVED - QA_ATTENTION example: AUTO_APPROVED catalogueTime: type: string format: date-time antennaMode: type: string enum: - SRA - DRA datastackCount: type: integer resolution: description: >- Resolution range of the image. Exact values depend on incidence angle and processing parameters. type: object additionalProperties: false properties: minimum: type: number minimum: 0 maximum: 50 example: 3.3 maximum: type: number minimum: 0 maximum: 50 example: 3.9 - type: object properties: properties: type: object properties: parentItemId: type: string format: uuid bbox: type: array items: type: number minItems: 4 maxItems: 4 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/catalogue/replication: parameters: - in: query name: limit schema: type: integer required: false description: >- Number of datatakes to be returned per request. The actual number returned can be less depending on the workload of the server. - in: query name: since schema: type: string required: false example: '2022-10-31 07:28:00' description: >- Return datatakes that were added to the catalogue since the given date. - in: query name: token schema: type: string required: false description: >- Continuation token used to retrieve the next set of datatakes. Tokens do not expire and can be used for incremental updates on a weekly, daily, or even on a hourly schedule. get: summary: Airbus OneAtlas Replicate Catalogue description: Replicate the catalogue and retrieve latest datatakes. tags: - Sar/Replication responses: '200': description: List of datatakes. content: application/json: schema: type: object properties: type: type: string enum: - FeatureCollection features: type: array items: type: object properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object properties: _links: type: object properties: metadata: type: string format: uri quicklook: type: string format: uri absoluteOrbit: type: integer acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 antennaMode: type: string enum: - SRA - DRA beamId: type: string catalogueTime: type: string format: date-time incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L mission: description: Satellite mission type: string enum: - TSX - PAZ outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH quality: type: string relativeOrbit: type: integer satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S startTime: type: string format: date-time stopTime: type: string format: date-time required: - absoluteOrbit - acquisitionId - antennaMode - beamId - catalogueTime - incidenceAngle - lookDirection - mission - outOfFullPerformance - pathDirection - polarizationChannels - quality - relativeOrbit - satellite - sensorMode - startTime - stopTime required: - geometry - properties - type _links: type: object properties: first: type: string format: uri last: type: string format: uri next: type: string format: uri previous: type: string format: uri self: type: string format: uri required: - self limit: type: integer size: type: integer bbox: type: array items: type: number minItems: 4 maxItems: 4 required: - _links - features - limit - size - type example: _links: next: >- https://sarapi.intelligence-airbusds.com/v1/sar/catalogue/replication?limit=100&token=P5uvZ0N2zAUsiScDJA self: >- https://sarapi.intelligence-airbusds.com/v1/sar/catalogue/replication?limit=100 limit: 100 size: 1 type: FeatureCollection features: - type: Feature geometry: type: Polygon coordinates: - - - 13.420763 - 52.5176849 - - 13.4126594 - 52.5434549 - - 13.3163278 - 52.5317222 - - 13.3250953 - 52.5060288 - - 13.420763 - 52.5176849 properties: absoluteOrbit: 45707 acquisitionId: TDX-1_ST_S_spot_028R_45707_A14252474_413 antennaMode: SRA beamId: spot_028 catalogueTime: '2018-09-18T07:49:40.804Z' incidenceAngle: minimum: 29.72 maximum: 30.46 lookDirection: R mission: TSX outOfFullPerformance: false pathDirection: ascending polarizationChannels: VV relativeOrbit: 146 satellite: TDX-1 sensorMode: SAR_ST_S startTime: '2018-09-17T16:44:52.439Z' stopTime: '2018-09-17T16:44:52.852Z' '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Catalogue replication is temporarily not available. /sar/catalogue/download: get: summary: Airbus OneAtlas Download Complete Catalogue description: >- Download the complete catalogue as vector dataset suitable for GIS analysis. tags: - Sar/Replication responses: '200': description: Vector dataset. headers: Digest: schema: type: string example: sha-256=X48E9qOokqqrvdts8nOJRJN3OWDUoyWxBf7kbu9DBPE= description: Checksum of the vector dataset. Last-Modified: schema: type: string example: Wed, 21 Oct 2015 07:28:00 GMT description: Date the vector dataset has been last updated. content: application/geopackage+sqlite3: schema: type: string format: binary application/vnd.google-earth.kmz: schema: type: string format: binary '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '406': description: Requested vector dataset format is not supported by the server. '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Catalogue download is temporarily not available. /sar/catalogue/revocation: parameters: - in: query name: limit schema: type: integer required: false description: >- Number of revocations to be returned per request. The actual number returned can be less depending on the workload of the server. - in: query name: since schema: type: string required: false example: '2022-10-31 07:28:00' description: Return revocations issued since the given date. - in: query name: token schema: type: string required: false description: >- Continuation token used to retrieve the next set of revocations. Tokens do not expire and can be used for incremental updates on a weekly, daily, or even on a hourly schedule. get: summary: Airbus OneAtlas Get Catalogue Revocations description: >- Retrieve catalogue revocations, i.e. catalogue datatakes that cannot be ordered anymore. tags: - Sar/Replication responses: '200': description: List of revocations. content: application/json: schema: type: object properties: _links: type: object properties: first: type: string format: uri last: type: string format: uri next: type: string format: uri previous: type: string format: uri self: type: string format: uri required: - self limit: type: integer size: type: integer data: type: array items: type: object properties: acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 issueTime: type: string format: date-time reason: type: string required: - acquisitionId - issueTime required: - _links - limit - data - size example: _links: next: >- https://sarapi.intelligence-airbusds.com/v1/sar/catalogue/revocation?limit=100&token=P5uvZ0N2zAUsiScDJA self: >- https://sarapi.intelligence-airbusds.com/v1/sar/catalogue/revocation?limit=100 limit: 100 size: 1 data: - acquisitionId: TDX-1_ST_S_spot_028R_45707_A14252474_413 issueTime: '2021-04-08T00:56:40Z' '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Catalogue revocations are temporarily not available. /sar/prices: post: summary: Airbus OneAtlas Get Prices for Items tags: - Sar/Prices requestBody: description: items to get the price for required: true content: application/json: schema: type: object properties: acquisitions: type: array minItems: 1 items: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 items: type: array minItems: 1 items: type: string format: uuid orderTemplate: type: string oneOf: - required: - acquisitions - required: - items responses: '200': description: price objects content: application/json: schema: type: array minItems: 1 items: type: object additionalProperties: false required: - itemId - acquisitionId - price properties: itemId: type: string format: uuid acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Not Found content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/stacks: post: summary: Airbus OneAtlas Create Stacks from Template Items tags: - Sar/Search requestBody: description: template items for new stacks required: true content: application/json: schema: type: object properties: acquisitions: type: array minItems: 1 items: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 items: type: array minItems: 1 items: type: string format: uuid orderTemplate: type: string periodicity: type: integer enum: - 11 - 22 - 33 - 44 - 55 - 66 - 77 - 88 - 99 occurrences: type: integer minimum: 1 startTime: type: string format: date-time stopTime: type: string format: date-time oneOf: - required: - acquisitions - periodicity - occurrences - startTime - stopTime - required: - items - periodicity - occurrences - startTime - stopTime responses: '200': description: items of newly created stacks (not including template items) content: application/json: schema: type: object properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - allOf: - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL - type: object properties: properties: type: object properties: expiry: type: string format: date-time - type: object properties: properties: type: object properties: parentItemId: type: string format: uuid bbox: type: array items: type: number minItems: 4 maxItems: 4 required: - type - features '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/swathedit: post: summary: Airbus OneAtlas Get Swath Editing Information for Items tags: - Sar/Editing requestBody: description: requested items required: true content: application/json: schema: type: object properties: acquisitions: type: array minItems: 1 items: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 items: type: array minItems: 1 items: type: string format: uuid orderTemplate: type: string extensionLength: type: number example: 8 description: >- number of seconds to enlarge item footprint by in each direction oneOf: - required: - acquisitions - required: - items responses: '200': description: maximum allowed footprints for items content: application/json: schema: type: object properties: type: type: string enum: - FeatureCollection features: type: array items: type: object properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object properties: itemId: type: string format: uuid acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 startTime: type: string format: date-time stopTime: type: string format: date-time minimumSceneLength: type: number example: 8 description: minimum allowed scene length in seconds required: - itemId - startTime - stopTime - minimumSceneLength required: - type - geometry - properties bbox: type: array items: type: number minItems: 4 maxItems: 4 required: - type - features '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Not Found content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object patch: summary: Airbus OneAtlas Update Swath Editing Information for Items tags: - Sar/Editing requestBody: description: items to updated (either based on times or on geometries) required: true content: application/json: schema: oneOf: - type: array items: type: object properties: itemId: type: string format: uuid startTime: type: string format: date-time stopTime: type: string format: date-time required: - itemId - startTime - stopTime - type: object properties: type: type: string enum: - FeatureCollection features: type: array items: type: object properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object properties: itemId: type: string format: uuid required: - itemId required: - type - geometry - properties required: - type - features responses: '200': description: updated items content: application/json: schema: type: object properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL bbox: type: array items: type: number minItems: 4 maxItems: 4 required: - type - features '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Not Found content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/orderOptions: patch: summary: Airbus OneAtlas Update Order Options tags: - Sar/Editing requestBody: required: true content: application/json: schema: type: object properties: items: type: array minItems: 1 items: type: string format: uuid orderTemplate: type: string orderOptions: type: object properties: orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 required: - items - orderOptions responses: '200': description: items with new order options content: application/json: schema: type: object properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL bbox: type: array items: type: number minItems: 4 maxItems: 4 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/baskets: get: summary: Airbus OneAtlas Get All Baskets tags: - Sar/Baskets responses: '200': description: list of baskets content: application/json: schema: type: array items: allOf: - type: object properties: basketId: type: string format: uuid - type: object properties: customerReference: type: string example: O29343 purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Basket doesn't exist '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object post: summary: Airbus OneAtlas Create Basket tags: - Sar/Baskets requestBody: content: application/json: schema: allOf: - type: object properties: {} - type: object properties: customerReference: type: string example: O29343 purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 responses: '200': description: new basket headers: Location: description: link to new basket schema: type: string format: uri content: application/json: schema: allOf: - type: object properties: basketId: type: string format: uuid - type: object properties: customerReference: type: string example: O29343 purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 - type: object properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL bbox: type: array items: type: number minItems: 4 maxItems: 4 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Basket doesn't exist '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/baskets/{basketId}: parameters: - name: basketId in: path required: true schema: type: string format: uuid get: summary: Airbus OneAtlas Get Basket tags: - Sar/Baskets responses: '200': description: basket content: application/json: schema: allOf: - type: object properties: customerReference: type: string example: O29343 purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 - type: object properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL bbox: type: array items: type: number minItems: 4 maxItems: 4 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Basket doesn't exist '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object patch: summary: Airbus OneAtlas Update Basket Parameters tags: - Sar/Baskets requestBody: content: application/json: schema: type: object properties: customerReference: type: string example: O29343 purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 responses: '200': description: Updated basket content: application/json: schema: allOf: - type: object properties: customerReference: type: string example: O29343 purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 - type: object properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL bbox: type: array items: type: number minItems: 4 maxItems: 4 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Basket doesn't exist '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object put: summary: Airbus OneAtlas Replace Basket Parameters tags: - Sar/Baskets requestBody: content: application/json: schema: type: object properties: customerReference: type: string example: O29343 purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 responses: '200': description: Updated basket content: application/json: schema: allOf: - type: object properties: customerReference: type: string example: O29343 purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 - type: object properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL bbox: type: array items: type: number minItems: 4 maxItems: 4 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Basket doesn't exist '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object delete: summary: Airbus OneAtlas Delete Basket tags: - Sar/Baskets responses: '200': description: Basket has been deleted '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Basket doesn't exist '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/baskets/{basketId}/addItems: parameters: - name: basketId in: path required: true schema: type: string format: uuid post: summary: Airbus OneAtlas Add Items to Basket tags: - Sar/Baskets requestBody: description: acquisitionId to add required: true content: application/json: schema: type: object properties: acquisitions: type: array minItems: 1 items: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 items: type: array minItems: 1 items: type: string format: uuid orderTemplate: type: string orderOptions: type: object additionalProperties: false properties: productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 oneOf: - required: - acquisitions - required: - items responses: '200': description: Basket with new items added content: application/json: schema: allOf: - type: object properties: customerReference: type: string example: O29343 purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 - type: object properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL bbox: type: array items: type: number minItems: 4 maxItems: 4 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Basket doesn't exist '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/baskets/{basketId}/removeItems: parameters: - name: basketId in: path required: true schema: type: string format: uuid post: summary: Airbus OneAtlas Remove Items from Basket tags: - Sar/Baskets requestBody: description: items to be removed required: true content: application/json: schema: type: object properties: acquisitions: type: array minItems: 1 items: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 items: type: array minItems: 1 items: type: string format: uuid oneOf: - required: - acquisitions - required: - items responses: '200': description: Basket with items removed content: application/json: schema: allOf: - type: object properties: customerReference: type: string example: O29343 purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 - type: object properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL bbox: type: array items: type: number minItems: 4 maxItems: 4 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Basket doesn't exist '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/baskets/{basketId}/submit: parameters: - name: basketId in: path required: true schema: type: string format: uuid post: summary: Airbus OneAtlas Submit Basket tags: - Sar/Baskets responses: '200': description: order content: application/json: schema: allOf: - allOf: - type: object properties: customerReference: type: string example: O29343 purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 - type: object properties: orderId: type: string pattern: ^\d{1,9} example: '12345' submissionTime: type: string format: date-time - type: object properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL - type: object properties: properties: type: object properties: downlinkTime: type: string format: date-time orderId: type: string pattern: ^\d{1,9} example: '12345' orderItemId: type: string pattern: ^\d{9}_\d{4}$ example: '000012345_0001' bbox: type: array items: type: number minItems: 4 maxItems: 4 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Basket doesn't exist '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/shopcart: get: deprecated: true summary: Airbus OneAtlas Get Shopcart tags: - Sar/Shopcart responses: '200': description: shopcart content: application/json: schema: type: object properties: customerReference: type: string example: O29343 features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL items: type: object required: - type - features properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL deprecated: true purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 type: type: string enum: - FeatureCollection required: - features - type '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Not Found content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object patch: deprecated: true summary: Airbus OneAtlas Update Shopcart Parameters tags: - Sar/Shopcart requestBody: description: update values required: true content: application/json: schema: type: object properties: customerReference: type: string example: O29343 purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 responses: '200': description: updated basket content: application/json: schema: type: object properties: customerReference: type: string example: O29343 features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL items: type: object required: - type - features properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL deprecated: true purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company title: type: string example: Lake Constance Test 1 type: type: string enum: - FeatureCollection required: - features - type '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Not Found content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/shopcart/addItems: post: deprecated: true summary: Airbus OneAtlas Add Items to Shopcart tags: - Sar/Shopcart requestBody: description: acquisitionId to add required: true content: application/json: schema: type: object properties: acquisitions: type: array minItems: 1 items: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 items: type: array minItems: 1 items: type: string format: uuid orderTemplate: type: string orderOptions: type: object additionalProperties: false properties: productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 oneOf: - required: - acquisitions - required: - items responses: '200': description: shopcart content: application/json: schema: type: object additionalProperties: false required: - type - features properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Not Found content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/shopcart/removeItems: post: deprecated: true summary: Airbus OneAtlas Remove Items from Shopcart tags: - Sar/Shopcart requestBody: description: >- items to be removed; non-existent items are allowed and don't return a error response required: true content: application/json: schema: type: array minItems: 1 items: type: string format: uuid responses: '200': description: shopcart content: application/json: schema: type: array items: type: string format: uuid '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Not Found content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/shopcart/items: patch: deprecated: true summary: Airbus OneAtlas Update Item Parameters. tags: - Sar/Shopcart requestBody: description: update values required: true content: application/json: schema: type: array minLength: 1 items: type: object additionalProperties: false required: - itemId properties: itemId: type: string format: uuid productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 responses: '200': description: updated items content: application/json: schema: type: object additionalProperties: false required: - type - features properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Not Found content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/shopcart/items/{itemId}: parameters: - name: itemId in: path description: item to be updated required: true schema: type: string format: uuid patch: deprecated: true summary: Airbus OneAtlas Update Item Parameters. tags: - Sar/Shopcart requestBody: description: update values required: true content: application/json: schema: type: object additionalProperties: false properties: productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 responses: '200': description: updated items content: application/json: schema: type: object additionalProperties: false required: - type - features properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Not Found content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/shopcart/submit: post: deprecated: true summary: Airbus OneAtlas Submit Shopcart tags: - Sar/Shopcart responses: '200': description: order content: application/json: schema: type: object required: - features - orderId - purpose - submissionTime - type properties: customerReference: type: string example: O29343 features: type: array items: allOf: - allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL - type: object properties: properties: type: object properties: downlinkTime: type: string format: date-time orderId: type: string pattern: ^\d{1,9} example: '12345' orderItemId: type: string pattern: ^\d{9}_\d{4}$ example: '000012345_0001' items: type: object required: - type - features properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL - type: object properties: properties: type: object properties: downlinkTime: type: string format: date-time orderId: type: string pattern: ^\d{1,9} example: '12345' orderItemId: type: string pattern: ^\d{9}_\d{4}$ example: '000012345_0001' deprecated: true orderId: type: string pattern: ^\d{1,9} example: '12345' purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company submissionTime: type: string format: date-time title: type: string example: Lake Constance Test 1 type: type: string enum: - FeatureCollection '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Not Found content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/orders: get: summary: Airbus OneAtlas Get List of Orders tags: - Sar/Monitoring responses: '200': description: orders content: application/json: schema: type: array items: type: object additionalProperties: false required: - orderId - purpose - submissionTime properties: basketId: type: string format: uuid customerReference: type: string example: O29343 orderId: type: string pattern: ^\d{1,9} example: '12345' purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company submissionTime: type: string format: date-time title: type: string example: Lake Constance Test 1 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Not Found content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/orders/{orderIdOrBasketId}: parameters: - name: orderIdOrBasketId in: path required: true schema: type: string get: summary: Airbus OneAtlas Get Order Details tags: - Sar/Monitoring responses: '200': description: order content: application/json: schema: type: object additionalProperties: false required: - features - orderId - purpose - submissionTime - type properties: customerReference: type: string example: O29343 features: type: array items: allOf: - allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL - type: object properties: properties: type: object properties: downlinkTime: type: string format: date-time orderId: type: string pattern: ^\d{1,9} example: '12345' orderItemId: type: string pattern: ^\d{9}_\d{4}$ example: '000012345_0001' items: type: object required: - type - features properties: type: type: string enum: - FeatureCollection features: type: array items: allOf: - allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL - type: object properties: properties: type: object properties: downlinkTime: type: string format: date-time orderId: type: string pattern: ^\d{1,9} example: '12345' orderItemId: type: string pattern: ^\d{9}_\d{4}$ example: '000012345_0001' bbox: type: array items: type: number minItems: 4 maxItems: 4 deprecated: true orderId: type: string pattern: ^\d{1,9} example: '12345' purpose: type: string description: >- Order purpose. Mandatory on submitting the shopcart, but not on crate. enum: - Aerospace Industry Company - Agro Company - Agro Service Company - Bank - Consulting Company - Consumer - Cooperative Company - Defence Company - DEM - Edition & Communication Company - Education / Research - Electronic System company - Emergency Response & Crisis Management - Energy Company - Energy Service Company - Engineering Company - Engineering Service Company - Environment - Forest Company - Forest Service Company - Funding Agency - Ground Control Points (GCP) - Hydrology - Infrastructure (Including Construction) - Insurance - International Civil Organization - International Military Organization - IT Service Company - LBS Company - Local Government - Maritime Services - Maritime and Coastal company - Maritime and Coastal Services company - Geology - Mining Company - Mining Service Company - Land Administration - National Civil Government - National Mapping - National Military Government - NGO / NPO / Association - Oil & Gas Company - Oil & Gas Service Company - Other Industry Company - Other - Property & Urban Planning - Public Company - Real Estate / Architect - Space Agency - Surface Movement Monitoring - Telecom Company - Transport Service Company - Utilities, Transport and Engineering - Value-Added Geo-Information Company submissionTime: type: string format: date-time title: type: string example: Lake Constance Test 1 type: type: string enum: - FeatureCollection bbox: type: array items: type: number minItems: 4 maxItems: 4 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Order doesn't exist '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/orders/*/items/status: post: summary: Airbus OneAtlas Get Status of Items with Filter tags: - Sar/Monitoring requestBody: description: filter for items to get the status for required: false content: application/json: schema: type: object additionalProperties: false properties: limit: type: integer minimum: 1 default: 200 filter: anyOf: - type: object properties: or: type: array items: anyOf: - type: object properties: status: oneOf: - type: object properties: eq: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected - type: object properties: in: type: array items: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected - type: object properties: startTime: oneOf: - type: object properties: eq: type: string format: date-time - type: object properties: lt: type: string format: date-time gt: type: string format: date-time - type: object properties: lastUpdate: oneOf: - type: object properties: eq: type: string format: date-time - type: object properties: lt: type: string format: date-time gt: type: string format: date-time - type: object properties: orderId: oneOf: - type: object properties: eq: type: string pattern: ^\d{1,9} example: '12345' - type: object properties: in: type: array items: type: string pattern: ^\d{1,9} example: '12345' - type: object properties: orderItemId: type: object properties: in: type: array items: type: string pattern: ^\d{9}_\d{4}$ example: '000012345_0001' - type: object properties: customerReference: oneOf: - type: object properties: eq: type: string example: O29343 - type: object properties: in: type: array items: oneOf: - type: string example: O29343 - type: string enum: - '*' - type: object properties: itemId: oneOf: - type: object properties: eq: type: string format: uuid - type: object properties: in: type: array items: type: string format: uuid - type: object properties: basketId: oneOf: - type: object properties: eq: type: string format: uuid - type: object properties: in: type: array items: type: string format: uuid - type: object properties: not: type: array items: anyOf: - type: object properties: status: oneOf: - type: object properties: eq: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected - type: object properties: in: type: array items: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected - type: object properties: startTime: oneOf: - type: object properties: eq: type: string format: date-time - type: object properties: lt: type: string format: date-time gt: type: string format: date-time - type: object properties: lastUpdate: oneOf: - type: object properties: eq: type: string format: date-time - type: object properties: lt: type: string format: date-time gt: type: string format: date-time - type: object properties: orderId: oneOf: - type: object properties: eq: type: string pattern: ^\d{1,9} example: '12345' - type: object properties: in: type: array items: type: string pattern: ^\d{1,9} example: '12345' - type: object properties: orderItemId: type: object properties: in: type: array items: type: string pattern: ^\d{9}_\d{4}$ example: '000012345_0001' - type: object properties: customerReference: oneOf: - type: object properties: eq: type: string example: O29343 - type: object properties: in: type: array items: oneOf: - type: string example: O29343 - type: string enum: - '*' - type: object properties: itemId: oneOf: - type: object properties: eq: type: string format: uuid - type: object properties: in: type: array items: type: string format: uuid - type: object properties: basketId: oneOf: - type: object properties: eq: type: string format: uuid - type: object properties: in: type: array items: type: string format: uuid - type: object properties: status: oneOf: - type: object properties: eq: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected - type: object properties: in: type: array items: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected startTime: oneOf: - type: object properties: eq: type: string format: date-time - type: object properties: lt: type: string format: date-time gt: type: string format: date-time lastUpdate: oneOf: - type: object properties: eq: type: string format: date-time - type: object properties: lt: type: string format: date-time gt: type: string format: date-time orderId: oneOf: - type: object properties: eq: type: string pattern: ^\d{1,9} example: '12345' - type: object properties: in: type: array items: type: string pattern: ^\d{1,9} example: '12345' orderItemId: type: object properties: in: type: array items: type: string pattern: ^\d{9}_\d{4}$ example: '000012345_0001' customerReference: oneOf: - type: object properties: eq: type: string example: O29343 - type: object properties: in: type: array items: oneOf: - type: string example: O29343 - type: string enum: - '*' itemId: oneOf: - type: object properties: eq: type: string format: uuid - type: object properties: in: type: array items: type: string format: uuid basketId: oneOf: - type: object properties: eq: type: string format: uuid - type: object properties: in: type: array items: type: string format: uuid example: or: - lastUpdate: gt: '2020-12-03T12:00:00' - startTime: gt: '2020-12-05T12:00:00' lt: '2020-12-10T12:00:00' responses: '200': description: price objects content: application/json: schema: type: array items: type: object additionalProperties: false required: - orderItemId - lastUpdateTime - status properties: itemId: type: string format: uuid orderItemId: type: string pattern: ^\d{9}_\d{4}$ example: '000012345_0001' lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected estimatedDownloadAvailability: type: string format: date-time '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Not Found content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object /sar/orders/*/items: post: summary: Airbus OneAtlas Get Items Only with OrderItemId tags: - Sar/Monitoring requestBody: description: array with orderItemIds required: true content: application/json: schema: type: object additionalProperties: false properties: limit: type: integer minimum: 1 default: 200 filter: anyOf: - type: object properties: or: type: array items: anyOf: - type: object properties: status: oneOf: - type: object properties: eq: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected - type: object properties: in: type: array items: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected - type: object properties: startTime: oneOf: - type: object properties: eq: type: string format: date-time - type: object properties: lt: type: string format: date-time gt: type: string format: date-time - type: object properties: lastUpdate: oneOf: - type: object properties: eq: type: string format: date-time - type: object properties: lt: type: string format: date-time gt: type: string format: date-time - type: object properties: orderId: oneOf: - type: object properties: eq: type: string pattern: ^\d{1,9} example: '12345' - type: object properties: in: type: array items: type: string pattern: ^\d{1,9} example: '12345' - type: object properties: orderItemId: type: object properties: in: type: array items: type: string pattern: ^\d{9}_\d{4}$ example: '000012345_0001' - type: object properties: customerReference: oneOf: - type: object properties: eq: type: string example: O29343 - type: object properties: in: type: array items: oneOf: - type: string example: O29343 - type: string enum: - '*' - type: object properties: itemId: oneOf: - type: object properties: eq: type: string format: uuid - type: object properties: in: type: array items: type: string format: uuid - type: object properties: basketId: oneOf: - type: object properties: eq: type: string format: uuid - type: object properties: in: type: array items: type: string format: uuid - type: object properties: not: type: array items: anyOf: - type: object properties: status: oneOf: - type: object properties: eq: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected - type: object properties: in: type: array items: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected - type: object properties: startTime: oneOf: - type: object properties: eq: type: string format: date-time - type: object properties: lt: type: string format: date-time gt: type: string format: date-time - type: object properties: lastUpdate: oneOf: - type: object properties: eq: type: string format: date-time - type: object properties: lt: type: string format: date-time gt: type: string format: date-time - type: object properties: orderId: oneOf: - type: object properties: eq: type: string pattern: ^\d{1,9} example: '12345' - type: object properties: in: type: array items: type: string pattern: ^\d{1,9} example: '12345' - type: object properties: orderItemId: type: object properties: in: type: array items: type: string pattern: ^\d{9}_\d{4}$ example: '000012345_0001' - type: object properties: customerReference: oneOf: - type: object properties: eq: type: string example: O29343 - type: object properties: in: type: array items: oneOf: - type: string example: O29343 - type: string enum: - '*' - type: object properties: itemId: oneOf: - type: object properties: eq: type: string format: uuid - type: object properties: in: type: array items: type: string format: uuid - type: object properties: basketId: oneOf: - type: object properties: eq: type: string format: uuid - type: object properties: in: type: array items: type: string format: uuid - type: object properties: status: oneOf: - type: object properties: eq: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected - type: object properties: in: type: array items: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected startTime: oneOf: - type: object properties: eq: type: string format: date-time - type: object properties: lt: type: string format: date-time gt: type: string format: date-time lastUpdate: oneOf: - type: object properties: eq: type: string format: date-time - type: object properties: lt: type: string format: date-time gt: type: string format: date-time orderId: oneOf: - type: object properties: eq: type: string pattern: ^\d{1,9} example: '12345' - type: object properties: in: type: array items: type: string pattern: ^\d{1,9} example: '12345' orderItemId: type: object properties: in: type: array items: type: string pattern: ^\d{9}_\d{4}$ example: '000012345_0001' customerReference: oneOf: - type: object properties: eq: type: string example: O29343 - type: object properties: in: type: array items: oneOf: - type: string example: O29343 - type: string enum: - '*' itemId: oneOf: - type: object properties: eq: type: string format: uuid - type: object properties: in: type: array items: type: string format: uuid basketId: oneOf: - type: object properties: eq: type: string format: uuid - type: object properties: in: type: array items: type: string format: uuid example: or: - lastUpdate: gt: '2020-12-03T12:00:00' - startTime: gt: '2020-12-05T12:00:00' lt: '2020-12-10T12:00:00' responses: '200': description: order items as feature collection content: application/json: schema: type: object additionalProperties: false required: - type - features properties: type: type: string enum: - FeatureCollection limit: type: integer minimum: 1 default: 200 total: type: integer features: type: array items: allOf: - allOf: - allOf: - type: object properties: properties: type: object properties: price: type: object additionalProperties: false required: - final - total - currency properties: final: description: >- Not final, if parameters are missing to calculate all price elements (e.g. Fees). Final price might then be higher. type: boolean example: false missingParameters: description: >- parameters that need to be set to get final price type: array items: type: string example: - orbitType total: description: >- Price for item including known tax, discounts and fees type: number example: 834.32 currency: type: string example: EUR unitPrice: description: Price for standard scene type: number example: 1000 quantity: type: number description: Scene length example: 1.2 discountRate: type: number description: Discount for this item in percent example: 20 expiry: type: string format: date-time fees: type: array items: type: object additionalProperties: false required: - type - value properties: type: type: string enum: - NRT - Rapid tasking - Priority - Cancellation value: type: number description: Fee value example: '200' discountRate: type: number description: Discount rate applied on fee in percent example: '10' - type: object required: - type - geometry - properties properties: type: type: string enum: - Feature geometry: type: object additionalProperties: false required: - type - coordinates properties: type: type: string enum: - Polygon coordinates: type: array minLength: 1 items: type: array minLength: 3 items: type: array minLength: 2 maxLength: 2 items: type: number example: type: Polygon coordinates: - - - 9.346 - 47.788 - - 9.291 - 47.644 - - 9.538 - 47.592 - - 9.62 - 47.75 - - 9.511 - 47.802 - - 9.346 - 47.788 properties: type: object required: - itemId - mission - acquisitionId - startTime - stopTime - sensorMode - polarizationChannels - beamId - pathDirection - lookDirection - incidenceAngle - lastUpdateTime - status - outOfFullPerformance properties: itemId: type: string format: uuid mission: description: Satellite mission type: string enum: - TSX - PAZ satellite: description: Satellite type: string enum: - TSX-1 - PAZ-1 - TDX-1 acquisitionId: type: string example: TSX-1_ST_S_spot_049R_49677_D31767159_432 groupId: type: integer startTime: type: string format: date-time stopTime: type: string format: date-time sensorMode: description: >- The imaging/instrument/sensor mode to use for the acquisition type: string enum: - SAR_ST_S - SAR_HS_S - SAR_HS_S_300 - SAR_HS_S_150 - SAR_HS_D - SAR_HS_D_300 - SAR_HS_D_150 - SAR_SL_S - SAR_SL_D - SAR_SM_S - SAR_SM_D - SAR_SC_S - SAR_WS_S example: SAR_SM_S polarizationChannels: description: >- The dual-polarization modes (HHVV, HHHV, VVVH) are not available for staring spotlight or (wide) ScanSAR modes. The polarization modes HV and VH are only available for Wide ScanSAR acquisitions. type: string enum: - HH - VV - HV - VH - HHVV - HHHV - VVVH example: HH beamId: type: string example: strip_010 pathDirection: description: Path or orbit direction type: string example: ascending enum: - ascending - descending lookDirection: description: >- Look Direction. Left-looking acquisitions require special authorization. type: string enum: - R - L incidenceAngle: description: >- Incidence angle range in degrees. Only acquisitions with an average incidence angle in this range will be considered. type: object additionalProperties: false properties: minimum: type: number minimum: 10 maximum: 70 example: 30 maximum: type: number minimum: 10 maximum: 70 example: 50 productType: description: >- Product type for the processing of the acuqisition. Mandatory on placing the order, but not for feasibility. type: string enum: - SSC - MGD - GEC - EEC example: EEC resolutionVariant: description: >- Radiometric or spatial enhancement. Mandatory on placing the order, but not for feasibility. type: string enum: - SE - RE orbitType: description: >- Near Realtime acquisitions will incur an additional fee. Science processing is most accurate but takes approx 5 days to complete. Mandatory on placing the order, but not for feasibility. type: string enum: - NRT - rapid - science geocodedIncidenceMask: description: >- Include GIM in delivered product. Only applicable for EEC products. type: boolean default: false mapProjection: description: >- Projection of the delivered product. Mandatory on placing the order, but not for feasibility. type: string default: auto enum: - auto - UTM - UPS gainAttenuation: description: >- Processor gain Attenuation. Mandatory on placing the order, but not for feasibility. type: integer default: 0 enum: - 0 - 10 - 20 relativeOrbit: type: integer absoluteOrbit: type: integer orderTemplate: type: string lastUpdateTime: type: string format: date-time status: description: Status of item type: string enum: - feasible - availableInArchive - unavailable - submitted - waitingForAcquisitionApproval - accepted - planned - acquistion - transition - downlink - waitingForOrbit - processing - waitingForDeliveryApproval - delivery - completed - failed - cancelled - approvalRejected sensitivity: type: object additionalProperties: false required: - status properties: status: type: string enum: - notSensitive - potential - sensitive missingParameters: description: >- parameters that need to be set to get definite sensitivity status type: array items: type: string enum: - productType - resolutionVariant example: - productType - resolutionVariant type: type: string enum: - blacklist - resolution sensitivityInformation: type: string itemType: type: string enum: - catalogue - future outOfFullPerformance: description: >- If set to true and the account is authorized, out of full performance scenes will be included in the response. type: boolean default: false scienceOrbitAvailability: type: boolean - type: object properties: properties: type: object properties: submissionDeadline: type: string format: date-time acquisitionOnly: description: >- Acquisition is done and archived, but product will not be processed and deliverd. Requires special authorization. type: boolean default: false priority: description: >- Higher priority orders have a better chance of success but incur an additional fee type: string enum: - standard - priority - exclusive example: standard conflicts: type: object properties: status: type: string enum: - none - potential - expected external: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 baskets: type: object additionalProperties: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 minLength: 1 shopcart: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 feasibility: type: object additionalProperties: type: object properties: status: type: string enum: - none - potential - expected startTime: type: string format: date-time stopTime: type: string format: date-time minLength: 1 required: - status estimatedDownloadAvailability: type: string format: date-time receivingStation: description: >- Downlink station to use for direct-access customers type: string default: NSG_POOL example: NSG_POOL - type: object properties: properties: type: object properties: downlinkTime: type: string format: date-time orderId: type: string pattern: ^\d{1,9} example: '12345' orderItemId: type: string pattern: ^\d{9}_\d{4}$ example: '000012345_0001' - type: object properties: properties: type: object properties: basketId: type: string format: uuid customerReference: type: string example: O29343 orderSubmissionTime: type: string format: date-time bbox: type: array items: type: number minItems: 4 maxItems: 4 '400': description: Bad Request content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '401': description: Authorization information is missing or invalid. content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '403': description: Forbidden content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '404': description: Not Found content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '500': description: Internal Server Error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object '503': description: Connection to internal service error content: application/json: schema: type: object required: - error - message properties: error: type: string pattern: ^[A-Za-z0-9]+[A-Z-a-z0-9_\-]*[A-Za-z0-9]$ message: type: string location: type: string detail: type: string params: type: object security: - basicAuth: [] components: securitySchemes: basicAuth: type: http scheme: basic