@prefix rdf:	<http://www.w3.org/1999/02/22-rdf-syntax-ns#> .
@prefix schema:	<http://schema.org/> .
schema:paymentMethodId	rdf:type	rdf:Property .
@prefix rdfs:	<http://www.w3.org/2000/01/rdf-schema#> .
schema:paymentMethodId	rdfs:label	"paymentMethodId" ;
	rdfs:comment	"An identifier for the method of payment used (e.g. the last 4 digits of the credit card)." ;
	schema:domainIncludes	schema:Invoice ,
		schema:Order ;
	schema:rangeIncludes	schema:Text .