Website Schema script for Adsense fast Response (json)
What is Website Schema script for Adsense fast Response ?
In this schema, there are three main properties: "name", "url", and "information". The "name" property represents the name of the online source, the "url" property represents the URL of the online source, and the "information" property is an object containing information about Google AdSense.
The "information" object has several properties such as "description" (a description of Google AdSense), "features" (a list of features of Google AdSense), "requirements" (a list of requirements for using Google AdSense), and "earnings" (an object with "paymentThreshold" and "payoutFrequency" properties representing the earnings-related details of Google AdSense).
You can use this schema to validate JSON data that adheres to this structure. Feel free to modify or expand the schema based on your specific requirements.
<script type='application/ld+json'>
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "Online Source",
"description": "Information about Google AdSense from an online source",
"type": "object",
"properties": {
"name": {
"type": "string",
"description": "The name of the online source"
},
"url": {
"type": "string",
"format": "uri",
"description": "The URL of the online source"
},
"information": {
"type": "object",
"properties": {
"description": {
"type": "string",
"description": "Description of Google AdSense"
},
"features": {
"type": "array",
"description": "List of features of Google AdSense",
"items": {
"type": "string"
}
},
"requirements": {
"type": "array",
"description": "List of requirements for using Google AdSense",
"items": {
"type": "string"
}
},
"earnings": {
"type": "object",
"properties": {
"paymentThreshold": {
"type": "number",
"minimum": 0,
"description": "The payment threshold for Google AdSense earnings"
},
"payoutFrequency": {
"type": "string",
"description": "The frequency of payout for Google AdSense earnings"
}
},
"required": ["paymentThreshold", "payoutFrequency"]
}
},
"required": ["description", "features", "requirements", "earnings"]
}
},
"required": ["name", "url", "information"]
}
</script>
Comments
Post a Comment
Thanks for your Comments.