Data Elements

Oops, it seems that you need to place a table or a macro generating a table within the Table Filter macro.

The table is being loaded. Please wait for a bit ...


KeyFormatCNDDescriptionBeschreibung
1

countryName

string

O

Name of the country

Ländername
2

countryA2

string

O

ISO-3166 alpha-2 code

ISO-3166 Alpha-2 Code
3

countryA3

string

M

ISO-3166 alpha-3 code

ISO-3166 Alpha-3 Code
4

countryNumber

string

O

ISO-3166 numeric code

ISO-3166 numerischer Code

Schema

(info) BASEURL= https://www.computop-paygate.com/schemas

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "$id": "BASEURL/country.json",
    "title": "country",
    "description": "Country",
    "type": "object",
    "properties": {
        "countryName": {
            "type": "string",
            "description": "Name of the country."
        },
        "countryA2": {
            "type": "string",
            "description": "ISO-3166 alpha-2 code."
        },
        "countryA3": {
            "type": "string",
            "description": "ISO 3166-1:2013 alpha-3"
        },
        "countryNumber": {
            "type": "string",
            "description": "ISO-3166 numeric code."
        }
    },
    "required": ["countryA3"],
    "additionalProperties": false
}

Sample

{
    "countryName": "poland",
    "countryA2": "pl",
    "countryA3": "pol",
    "countryNumber": "616"
}