DepositAccount
A type of Bank Account with a main purpose of depositing funds to gain interest or other benefits.
Usage: Fewer than 10 domains
Property | Expected Type | Description |
---|---|---|
Properties from FinancialProduct | ||
annualPercentageRate
|
Number or QuantitativeValue | The annual rate that is charged for borrowing (or made by investing), expressed as a single percentage number that represents the actual yearly cost of funds over the term of a loan. This includes any fees or additional costs associated with the transaction. |
feesAndCommissionsSpecification
|
Text or URL | Description of fees, commissions, and other terms applied either to a class of financial product, or by a financial service organization. |
interestRate
|
Number or QuantitativeValue | The interest rate, charged or paid, applicable to the financial product. Note: This is different from the calculated annualPercentageRate. |
Properties from Service | ||
aggregateRating
|
AggregateRating | The overall rating, based on a collection of reviews or ratings, of the item. |
areaServed
|
AdministrativeArea or GeoShape or Place or Text | The geographic area where a service or offered item is provided. Supersedes serviceArea. |
audience
|
Audience | An intended audience, i.e. a group for whom something was created. Supersedes serviceAudience. |
availableChannel
|
ServiceChannel | A means of accessing the service (e.g. a phone bank, a web site, a location, etc.). |
award
|
Text | An award won by or for this item. Supersedes awards. |
brand
|
Brand or Organization | The brand(s) associated with a product or service, or the brand(s) maintained by an organization or business person. |
category
|
Text or Thing | A category for the item. Greater signs or slashes can be used to informally indicate a category hierarchy. |
hasOfferCatalog
|
OfferCatalog | Indicates an OfferCatalog listing for this Organization, Person, or Service. |
hoursAvailable
|
OpeningHoursSpecification | The hours during which this service or contact is available. |
isRelatedTo
|
Product or Service | A pointer to another, somehow related product (or multiple products). |
isSimilarTo
|
Product or Service | A pointer to another, functionally similar product (or multiple products). |
logo
|
ImageObject or URL | An associated logo. |
offers
|
Offer | An offer to provide this item—for example, an offer to sell a product, rent the DVD of a movie, perform a service, or give away tickets to an event. |
provider
|
Organization or Person | The service provider, service operator, or service performer; the goods producer. Another party (a seller) may offer those services or goods on behalf of the provider. A provider may also serve as the seller. Supersedes carrier. |
providerMobility
|
Text | Indicates the mobility of a provided service (e.g. 'static', 'dynamic'). |
review
|
Review | A review of the item. Supersedes reviews. |
serviceOutput
|
Thing | The tangible thing generated by the service, e.g. a passport, permit, etc. Supersedes produces. |
serviceType
|
Text | The type of service being offered, e.g. veterans' benefits, emergency relief, etc. |
Properties from InvestmentOrDeposit | ||
amount
|
MonetaryAmount or Number | The amount of money. |
Properties from Thing | ||
additionalType
|
URL | An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. In RDFa syntax, it is better to use the native RDFa syntax - the 'typeof' attribute - for multiple types. Schema.org tools may have only weaker understanding of extra types, in particular those defined externally. |
alternateName
|
Text | An alias for the item. |
description
|
Text | A description of the item. |
disambiguatingDescription
|
Text | A sub property of description. A short description of the item used to disambiguate from other, similar items. Information from other properties (in particular, name) may be necessary for the description to be useful for disambiguation. |
image
|
ImageObject or URL | An image of the item. This can be a URL or a fully described ImageObject. |
mainEntityOfPage
|
CreativeWork or URL | Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See background notes for details. Inverse property: mainEntity. |
name
|
Text | The name of the item. |
potentialAction
|
Action | Indicates a potential Action, which describes an idealized action in which this thing would play an 'object' role. |
sameAs
|
URL | URL of a reference Web page that unambiguously indicates the item's identity. E.g. the URL of the item's Wikipedia page, Freebase page, or official website. |
url
|
URL | URL of the item. |
Acknowledgement
This element is based on the work of the Financial Industry Business Ontology project (see http://www.fibo.org/schema for details), in support of the W3C Financial Industry Business Ontology Community Group (http://www.fibo.org/community). Many class and property definitions are inspired by or based on http://www.fibo.org.
Examples
<body> <h1>Easy access accounts Comparison - Ordered by interest rate (AER)</h1> <div> <table> <tr> <th>Bank</th><th>Account</th><th>Interest Rate</th><th>Min/Max Opening Amount</th><th>Access</th> </tr> <tr> <td><a href="https://www.rcibank.co.uk">RCI Bank</a></td> <td>Freedom Savings Account</td> <td>1.65% Variable</td> <td>£100 to £1,000,000</td> <td>Internet, Post, Telephone</td> </tr> <tr> <td><a href="https://sbiukonlinesavings.com/">State Bank of India</a></td> <td>Online Instant Access Savings Issue 4</td> <td>1.25% Variable</td> <td>£500 to £1,000,000</td> <td>Internet, In Branch</td> </tr> <tr> <td><a href="http://www.aldermore.co.uk/">Aldermore</a></td> <td>Easy Access Issue 9</td> <td>1.25% Variable</td> <td>£1,000 to £1,000,000</td> <td>Internet, Post, Telephone</td> </tr> </table> </div> </body>
<body itemscope itemtype="http://schema.org/WebPage"> <h1 itemprop="name">Easy access accounts Comparison - Ordered by interest rate (AER)</h1> <div itemprop="mainEntity" itemscope itemtype="http://schema.org/ItemList"> <meta itemprop="name" content="Easy access accounts Comparison List"/> <table> <tr> <th>Bank</th><th>Account</th><th>Interest Rate</th><th>Min/Max Opening Amount</th><th>Access</th> </tr> <tr itemprop="itemListElement" itemscope itemtype="http://schema.org/DepositAccount"> <td><a itemprop="provider" href="https://www.rcibank.co.uk">RCI Bank</a></td> <td itemprop="name">Freedom Savings Account</td> <td itemprop="interestRate" itemscope itemtype="http://schema.org/QuantitativeValue"><span itemprop="value">1.65</span>% <span itemprop="valueReference">Variable</span></td> <td itemprop="amount" itemscope itemtype="http://schema.org/MonetaryAmount"><meta itemprop="currency" content="GBP"/>£<span itemprop="minValue" content="100">100</span> to £<span itemprop="maxValue" content="1000000">1,000,000</span></td> <td><span itemprop="availableChannel">Internet</span>, <span itemprop="availableChannel">Post</span>, <span itemprop="availableChannel">Telephone</span></td> </tr> <tr itemprop="itemListElement" itemscope itemtype="http://schema.org/DepositAccount"> <td><a itemprop="provider" href="https://sbiukonlinesavings.com/">State Bank of India</a></td> <td itemprop="name">Online Instant Access Savings Issue 4</td> <td itemprop="interestRate" itemscope itemtype="http://schema.org/QuantitativeValue"><span itemprop="value">1.25</span>% <span itemprop="valueReference">Variable</span></td> <td itemprop="amount" itemscope itemtype="http://schema.org/MonetaryAmount"><meta itemprop="currency" content="GBP"/>£<span itemprop="minValue" content="500">500</span> to £<span itemprop="maxValue" content="1000000">1,000,000</span></td> <td><span itemprop="availableChannel">Internet</span>, <span itemprop="availableChannel">In Branch</span></td> </tr> <tr itemprop="itemListElement" itemscope itemtype="http://schema.org/DepositAccount"> <td><a itemprop="provider" href="http://www.aldermore.co.uk/">Aldermore</a></td> <td itemprop="name">Easy Access Issue 9</td> <td itemprop="interestRate" itemscope itemtype="http://schema.org/QuantitativeValue"><span itemprop="value">1.25</span>% <span itemprop="valueReference">Variable</span></td> <td itemprop="amount" itemscope itemtype="http://schema.org/MonetaryAmount"><meta itemprop="currency" content="GBP"/>£<span itemprop="minValue" content="1000">1,000</span> to £<span itemprop="maxValue" content="1000000">1,000,000</span></td> <td><span itemprop="availableChannel">Internet</span>, <span itemprop="availableChannel">Post</span>, <span itemprop="availableChannel">Telephone</span></td> </tr> </table> </div> </body>
<body vocab="http://schema.org/" typeof="WebPage"> <h1 property="name">Easy access accounts Comparison - Ordered by interest rate (AER)</h1> <div property="mainEntity" typeof="ItemList"> <meta property="name" content="Easy access accounts Comparison List"/> <table> <tr> <th>Bank</th><th>Account</th><th>Interest Rate</th><th>Min/Max Opening Amount</th><th>Access</th> </tr> <tr property="itemListElement" typeof="DepositAccount"> <td><a property="provider" href="https://www.rcibank.co.uk">RCI Bank</a></td> <td property="name">Freedom Savings Account</td> <td property="interestRate" typeof="QuantitativeValue"><span property="value">1.65</span>% <span property="valueReference">Variable</span></td> <td property="amount" typeof="MonetaryAmount"><meta property="currency" content="GBP"/>£<span property="minValue" content="100">100</span> to £<span property="maxValue" content="1000000">1,000,000</span></td> <td><span property="availableChannel">Internet</span>, <span property="availableChannel">Post</span>, <span property="availableChannel">Telephone</span></td> </tr> <tr property="itemListElement" typeof="DepositAccount"> <td><a property="provider" href="https://sbiukonlinesavings.com/">State Bank of India</a></td> <td property="name">Online Instant Access Savings Issue 4</td> <td property="interestRate" typeof="QuantitativeValue"><span property="value">1.25</span>% <span property="valueReference">Variable</span></td> <td property="amount" typeof="MonetaryAmount"><meta property="currency" content="GBP"/>£<span property="minValue" content="500">500</span> to £<span property="maxValue" content="1000000">1,000,000</span></td> <td><span property="availableChannel">Internet</span>, <span property="availableChannel">In Branch</span></td> </tr> <tr property="itemListElement" typeof="DepositAccount"> <td><a property="provider" href="http://www.aldermore.co.uk/">Aldermore</a></td> <td property="name">Easy Access Issue 9</td> <td property="interestRate" typeof="QuantitativeValue"><span property="value">1.25</span>% <span property="valueReference">Variable</span></td> <td property="amount" typeof="MonetaryAmount"><meta property="currency" content="GBP"/>£<span property="minValue" content="1000">1,000</span> to £<span property="maxValue" content="1000000">1,000,000</span></td> <td><span property="availableChannel">Internet</span>, <span property="availableChannel">Post</span>, <span property="availableChannel">Telephone</span></td> </tr> </table> </div> </body>
<script type="application/ld+json"> { "@context": "http://schema.org", "@type": "WebPage", "name": "Easy access accounts Comparison - Ordered by interest rate (AER)", "mainEntity": { "@type" "ItemList", "name": "Easy access accounts Comparison List", "itemListElement": [ { "@type": "DepositAccount", "provider": { "@id": "https://www.rcibank.co.uk", "name": "RCI Bank" }, "name": "Freedom Savings Account", "interestRate": { "@type": "QuantitativeValue", "value": "1.65", "valueReference": "Variable" }, "amount": { "@type": "MonetaryAmount", "currency": "GBP", "minValue": "100", "maxValue": "1000000" }, "availableChannel": ["Internet","Post","Telephone"] }, { "@type": "DepositAccount", "provider": { "@id": "https://sbiukonlinesavings.com/", "name": "State Bank of India" }, "name": "Online Instant Access Savings Issue 4", "interestRate": { "@type": "QuantitativeValue", "value": "1.25", "valueReference": "Variable" }, "amount": { "@type": "MonetaryAmount", "currency": "GBP", "minValue": "500", "maxValue": "1000000" }, "availableChannel": ["Internet","In Branch"] }, { "@type": "DepositAccount", "provider": { "@id": "http://www.aldermore.co.uk/", "name": "Aldermore" }, "name": "Easy Access Issue 9", "interestRate": { "@type": "QuantitativeValue", "value": "1.65", "valueReference": "Variable" }, "amount": { "@type": "MonetaryAmount", "currency": "GBP", "minValue": "1000", "maxValue": "1000000" }, "availableChannel": ["Internet","Post","Telephone"] } ] } } </script>
Schema Version 3.1