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

18 lines
719 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:DepositAccount",
"title": "DepositAccount",
"description": "A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits.",
"type": "object",
"allOf": [
{
"description": "A product or service offered by a bank whereby one may deposit, withdraw or transfer money and in some cases be paid interest.",
"$ref": "schema:BankAccount"
},
{
"description": "A type of financial product that typically requires the client to transfer funds to a financial service in return for potential beneficial financial return.",
"$ref": "schema:InvestmentOrDeposit"
}
]
}