我正在做货币和加密货币交换网站的SEO。我们每个交易所都有一页(例如BTC到USD的一页,USD到Paypal的一页等等)。 我将此json-ld添加到主页:
{
"@context" : "http://schema.org",
"@type" : "Organization",
"name" : "Rexobit",
"url" : "https://rexobit.com/index.php",
"sameAs" : [
"https://twitter.com/rexobitsocial",
"https://www.facebook.com/rexobitsocial",
"https://www.aparat.com/rexobit",
"https://t.me/Rexobit",
"www.linkedin.com/in/rexobit",
"https://www.instagram.com/rexobit"
],
"address": {
"@type": "PostalAddress",
"streetAddress": "No. 104 ,almas building, phaze 2, sahand, east azarbijan",
"postalCode": "5331744939",
"addressCountry": "Iran"
}
}
但是我找不到来自“ schema.org”交换页面的很好的词汇。我使用“ CurrencyConversionService”类型创建了此代码:
{
"@context": "http://schema.org",
"@type": "CurrencyConversionService",
"name": "buy paypal with USD",
"description": "convert US Dollar to paypal",
"interestRate":"0.03",
"feesAndCommissionsSpecification":"lowest commission to buy paypal",
"serviceType":"USDT-paypal exchange"
}
}
但是我不认为这是正确的!如何定义对(在此示例中为USD和Paypal)。 我搜索了很多,但什么也没找到。 此json-ld是否适用于交换网页:rexobit?如果不是,对于USD到Paypal会话页面而言,什么是好的json-ld?