Files
marka/registry/schema-org/CreditCard.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

18 lines
1017 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:CreditCard",
"title": "CreditCard",
"description": "A card payment method of a particular brand or name. Used to mark up a particular payment method and/or the financial product/service that supplies the card account.\\n\\nCommonly used values:\\n\\n* http://purl.org/goodrelations/v1#AmericanExpress\\n* http://purl.org/goodrelations/v1#DinersClub\\n* http://purl.org/goodrelations/v1#Discover\\n* http://purl.org/goodrelations/v1#JCB\\n* http://purl.org/goodrelations/v1#MasterCard\\n* http://purl.org/goodrelations/v1#VISA\n ",
"type": "object",
"allOf": [
{
"description": "A financial product for the loaning of an amount of money, or line of credit, under agreed terms and charges.",
"$ref": "schema:LoanOrCredit"
},
{
"description": "A payment method using a credit, debit, store or other card to associate the payment with an account.",
"$ref": "schema:PaymentCard"
}
]
}