Adyen · JSON Structure

Management Allowed Origin Structure

AllowedOrigin schema from Adyen API

Type: object Properties: 3 Required: 1
PaymentsFinancial ServicesFintech

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

Properties

_links domain id

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/management-allowed-origin-structure.json",
  "description": "AllowedOrigin schema from Adyen API",
  "type": "object",
  "properties": {
    "_links": {
      "description": "References to resources linked to the allowed origin.",
      "$ref": "#/components/schemas/Links"
    },
    "domain": {
      "description": "Domain of the allowed origin.",
      "example": "https://adyen.com",
      "type": "string"
    },
    "id": {
      "description": "Unique identifier of the allowed origin.",
      "type": "string"
    }
  },
  "required": [
    "domain"
  ],
  "name": "AllowedOrigin"
}