big tings
This commit is contained in:
44
registry/schema-org/PaymentCard.schema.json
Normal file
44
registry/schema-org/PaymentCard.schema.json
Normal file
@@ -0,0 +1,44 @@
|
||||
{
|
||||
"$schema": "https://json-schema.org/draft/2020-12/schema",
|
||||
"$id": "schema:PaymentCard",
|
||||
"title": "PaymentCard",
|
||||
"description": "A payment method using a credit, debit, store or other card to associate the payment with an account.",
|
||||
"type": "object",
|
||||
"allOf": [
|
||||
{
|
||||
"description": "A product provided to consumers and businesses by financial institutions such as banks, insurance companies, brokerage firms, consumer finance companies, and investment companies which comprise the financial services industry.",
|
||||
"$ref": "schema:FinancialProduct"
|
||||
},
|
||||
{
|
||||
"description": "A payment method is a standardized procedure for transferring the monetary amount for a purchase. Payment methods are characterized by the legal and technical structures used, and by the organization or group carrying out the transaction. The following legacy values should be accepted:\n \\n\\n* http://purl.org/goodrelations/v1#ByBankTransferInAdvance\\n* http://purl.org/goodrelations/v1#ByInvoice\\n* http://purl.org/goodrelations/v1#Cash\\n* http://purl.org/goodrelations/v1#CheckInAdvance\\n* http://purl.org/goodrelations/v1#COD\\n* http://purl.org/goodrelations/v1#DirectDebit\\n* http://purl.org/goodrelations/v1#GoogleCheckout\\n* http://purl.org/goodrelations/v1#PayPal\\n* http://purl.org/goodrelations/v1#PaySwarm\\n\\nStructured values are recommended for newer payment methods.",
|
||||
"$ref": "schema:PaymentMethod"
|
||||
}
|
||||
],
|
||||
"properties": {
|
||||
"cashBack": {
|
||||
"description": "A cardholder benefit that pays the cardholder a small percentage of their net expenditures.",
|
||||
"oneOf": [
|
||||
{ "anyOf": [{ "type": "boolean" }, { "type": "number" }] },
|
||||
{
|
||||
"type": "array",
|
||||
"items": { "anyOf": [{ "type": "boolean" }, { "type": "number" }] }
|
||||
}
|
||||
]
|
||||
},
|
||||
"contactlessPayment": {
|
||||
"description": "A secure method for consumers to purchase products or services via debit, credit or smartcards by using RFID or NFC technology.",
|
||||
"type": "boolean"
|
||||
},
|
||||
"floorLimit": {
|
||||
"description": "A floor limit is the amount of money above which credit card transactions must be authorized.",
|
||||
"oneOf": [
|
||||
{ "$ref": "schema:MonetaryAmount" },
|
||||
{ "type": "array", "items": { "$ref": "schema:MonetaryAmount" } }
|
||||
]
|
||||
},
|
||||
"monthlyMinimumRepaymentAmount": {
|
||||
"description": "The minimum payment is the lowest amount of money that one is required to pay on a credit card statement each month.",
|
||||
"anyOf": [{ "type": "number" }, { "$ref": "schema:MonetaryAmount" }]
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user