{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.sentinel-hub.com/schemas/PlanetOrderRequestBase", "title": "PlanetOrderRequestBase", "deprecated": true, "type": "object", "required": [ "provider", "planetApiKey" ], "properties": { "provider": { "description": "Specify this value to use data provider Planet.", "type": "string", "enum": [ "PLANET" ] }, "planetApiKey": { "description": "Your Planet API key. Get one from Planet https://www.planet.com.", "type": "string" } } }