Adyen · JSON Structure

Pos Terminal Store Structure

Store schema from Adyen API

Type: object Properties: 6 Required: 1
PaymentsFinancial ServicesFintech

Store is a JSON Structure definition published by Adyen, describing 6 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

address description inStoreTerminals merchantAccountCode status store

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/adyen/refs/heads/main/json-structure/pos-terminal-store-structure.json",
  "description": "Store schema from Adyen API",
  "type": "object",
  "properties": {
    "address": {
      "description": "The address of the store.",
      "$ref": "#/components/schemas/Address"
    },
    "description": {
      "description": "The description of the store.",
      "type": "string"
    },
    "inStoreTerminals": {
      "description": "The list of terminals assigned to the store.",
      "items": {
        "type": "string"
      },
      "type": "array"
    },
    "merchantAccountCode": {
      "description": "The code of the merchant account.",
      "type": "string"
    },
    "status": {
      "description": "The status of the store:\n\n- `PreActive`: the store has been created, but not yet activated. \n\n- `Active`: the store has been activated. This means you can process payments for this store. \n\n- `Inactive`: the store is currently not active. \n\n- `InactiveWithModifications`: the store is currently not active, but payment modifications such as refunds are possible. \n\n- `Closed`: the store has been closed. ",
      "type": "string"
    },
    "store": {
      "description": "The code of the store.",
      "type": "string"
    }
  },
  "required": [
    "store"
  ],
  "name": "Store"
}