schema:amount leaf node


URI

http://schema.org/amount

Label

amount

Description

The amount of money.

Usage

DOMAINPROPERTYRANGE
schema:MonetaryGrant schema:amount schema:MonetaryAmount

Implementation

@prefix rdf: <http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
@prefix schema: <http://schema.org/> .

schema:amount a rdf:Property ;
    rdfs:label "amount" ;
    schema:domainIncludes schema:MonetaryGrant ;
    schema:rangeIncludes schema:MonetaryAmount ;
    rdfs:comment "The amount of money." .