Klarna · Schema

Location

The location of the selected shipping option

FintechBNPLPaymentsCardsShopping

Properties

Name Type Description
address object
id string The location id
name string The display name of the location
price integer The price for this location
View JSON Schema on GitHub

JSON Schema

klarna-location-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Location",
  "title": "Location",
  "description": "The location of the selected shipping option",
  "properties": {
    "address": {
      "$ref": "#/components/schemas/Address"
    },
    "id": {
      "description": "The location id",
      "type": "string"
    },
    "name": {
      "description": "The display name of the location",
      "type": "string"
    },
    "price": {
      "description": "The price for this location",
      "enum": [
        null
      ],
      "format": "int64",
      "type": "integer"
    }
  },
  "type": "object"
}