{
	"$schema": "https://json-schema.org/draft/2020-12/schema",
	"$id": "https://schema.twindev.org/unece/UneceDigitalMethod",
	"title": "UneceDigitalMethod",
	"description": "The use of online and digital technologies to collect monetary payment amounts.",
	"type": "object",
	"properties": {
		"@context": {
			"$ref": "https://schema.twindev.org/unece/UneceContextType",
			"description": "JSON-LD Context."
		},
		"type": {
			"const": "DigitalMethod",
			"description": "JSON-LD Type."
		},
		"accountHolderName": {
			"type": "string",
			"description": "An account holder's name, expressed as text, for this digital method used for payment."
		},
		"applicableIndicator": {
			"type": "boolean",
			"description": "The indication of whether or not this digital method used for payment is applicable."
		},
		"cardholderName": {
			"type": "string",
			"description": "A cardholder's name, expressed as text, for this digital method used for payment."
		},
		"description": {
			"type": "string",
			"description": "A textual description of this digital method used for payment."
		},
		"expiryDateTime": {
			"type": "string",
			"description": "The expiry date or date time of this digital method used for payment.",
			"format": "date-time"
		},
		"identifier": {
			"anyOf": [
				{
					"type": "string"
				},
				{
					"$ref": "https://schema.twindev.org/json-ld/JsonLdValueObject"
				}
			],
			"description": "The identifier of the digital method used for payment."
		},
		"issuingCompanyName": {
			"type": "string",
			"description": "An issuing company name, expressed as text, for this digital method used for payment."
		},
		"typeCode": {
			"anyOf": [
				{
					"$ref": "https://schema.twindev.org/unece/UneceDigitalMethodTypeCodeList"
				},
				{
					"type": "string"
				}
			],
			"description": "The code specifying the type of digital method used for payment."
		},
		"validFromDateTime": {
			"type": "string",
			"description": "The date or date time from when this digital method used for payment is valid.",
			"format": "date-time"
		},
		"verificationNumeric": {
			"type": "string",
			"description": "The verification number for this digital method used for payment."
		}
	},
	"required": ["type"]
}
