Note: You are viewing the development version of Schema.org. See how we work for more details.

governmentBenefitsInfo

A Schema.org Property

This term is in the "new" area - implementation feedback and adoption from applications and websites can help improve our definitions.
governmentBenefitsInfo provides information about government benefits associated with a SpecialAnnouncement.

Values expected to be one of these types

Used on these types

Source

https://github.com/schemaorg/schemaorg/issues/2534


Examples

Example 1
Copied
Example notes or example HTML without markup.
  1. Government benefits coverage for SpecialAnnouncement pertaining to the covid-19 situation.
Example encoded as JSON-LD in a HTML script tag.
  1. <script type="application/ld+json">
  2. {
  3.   "@context": "https://schema.org",
  4.   "@type": "SpecialAnnouncement",
  5.   "name": "New Paycheck Protection Program for small business",
  6.   "text": "Example Administration announces a new loan that helps small businesses keep their workforce employed during the Coronavirus (COVID-19) crisis.",
  7.   "datePosted": "2020-03-30T08:00",
  8.   "expires": "2020-04-24T23:59",
  9.   "category": "https://www.wikidata.org/wiki/Q81068910",
  10.   "spatialCoverage":
  11.       {
  12.         "type": "Country",
  13.         "name": "US"
  14.       },
  15.   "governmentBenefitsInfo": {
  16.     "@type": "GovernmentService",
  17.     "name": "Paycheck Protection Program",
  18.     "url":  "https://www.sba.gov/funding-programs/loans/coronavirus-relief-options/paycheck-protection-program-ppp",
  19.     "provider": {
  20.       "@type": "GovernmentOrganization",
  21.       "name": "US Small Business Administration"
  22.      },
  23.     "serviceType": "https://schema.org/BusinessSupport",
  24.     "audience": {
  25.       "@type": "Audience",
  26.       "name": "Small businesses"
  27.      }
  28.    }
  29. }
  30. </script>
Structured representation of the JSON-LD example.