⚠️ Важно: данный сайт не имеет отношения к владельцам schema.org, это всего лишь любительский (неофициальный) перевод. Сайт сделан для тех кто плохо воспринимает технический английский. Оригинальную и актуальную информацию на английском языке вы можете найти тут: schema.org/Grant.

Grant: микроразметка для субсидий и грантов

На странице Grant вы узнаете все о микроразметке для субсидий и грантов.

Grant - Тип Schema.org
Описание: Грант - это обычно финансовая или иной количественно измеримый ресурс. Обычно спонсор финансирует некоторую сумму для Организации или Человека, иногда не обязательно через Проект, что приводит к одному или нескольким результатам, или финансируемым элементам. В случае финансовой поддержки, укажите спонсора для Финансового Гранта. Для некоммерческой поддержки, укажите спонсора Грантов ресурсов (например, место в офисе).

Гранты поддерживают деятельность, направленную на достижение согласованных общих целей, часто, но не всегда, организованных как Проекты. Проекты, существующие длительное время, иногда финансируются различными грантами с течением времени, но также обычно проект связан с одним грантом.

Сумма Гранта представлена с использованием суммы как Денежной Суммы.
Грант - это обычно финансовая или иной количественно измеримый ресурс. Обычно спонсор финансирует некоторую сумму для Организации или Человека, иногда не обязательно через Проект, что приводит к одному или нескольким результатам, или финансируемым элементам. В случае финансовой поддержки, укажите спонсора для Финансового Гранта. Для некоммерческой поддержки, укажите спонсора Грантов ресурсов (например, место в офисе).

Гранты поддерживают деятельность, направленную на достижение согласованных общих целей, часто, но не всегда, организованных как Проекты. Проекты, существующие длительное время, иногда финансируются различными грантами с течением времени, но также обычно проект связан с одним грантом.

Сумма Гранта представлена с использованием суммы как Денежной Суммы.
СвойствоОжидаемый типОписание
Properties from Grant
fundedItem BioChemEntity или CreativeWork или Event или MedicalEntity или Organization или Person или Product Indicates something directly or indirectly funded or sponsored through a Grant. See also ownershipFundingInfo. Обратное свойство: funding
funder Organization или Person Лицо или организация, поддерживающие (спонсирующие) что-то с помощью какого-то финансового взноса.
sponsor Organization или Person Лицо или организация, которая поддерживает объект через обещание, обет или финансовый вклад. Например, спонсор медицинского исследования или корпоративный спонсор мероприятия.
Properties from Thing
additionalType Text или URL An additional type for the item, typically used for adding more specific types from external vocabularies in microdata syntax. This is a relationship between something and a class that the thing is in. Typically the value is a URI-identified RDF class, and in this case corresponds to the use of rdf:type in RDF. Text values can be used sparingly, for cases where useful information can be added without their being an appropriate schema to reference. In the case of text values, the class label should follow the schema.org style guide.
alternateName Text Псевдоним для элемента.
description Text или TextObject Описание элемента.
disambiguatingDescription Text Подсвойство описания. Краткое описание элемента, используемое для различения от других, схожих элементов. Для того чтобы описание было полезным для разрешения неоднозначности, может потребоваться информация из других свойств (в частности, name).
identifier PropertyValue или Text или URL The identifier property represents any kind of identifier for any kind of Thing, such as ISBNs, GTIN codes, UUIDs etc. Schema.org provides dedicated properties for representing many of these, either as textual strings or as URL (URI) links. See background notes for more details.
image ImageObject или URL An image of the item. This can be a URL or a fully described ImageObject.
mainEntityOfPage CreativeWork или URL Indicates a page (or other CreativeWork) for which this thing is the main entity being described. See background notes for details. Обратное свойство: mainEntity
name Text Название элемента.
potentialAction Action Указывает на потенциальное действие, описывающее идеализированное действие, в котором этот объект мог бы выполнять роль 'объекта'.
sameAs URL URL страницы для ссылки, однозначно указывающей на идентичность объекта. Например, URL страницы объекта на Википедии, записи в Wikidata или официального веб-сайта.
subjectOf CreativeWork или Event Свойство Schema.org - subjectOf: A CreativeWork or Event about this Thing. Обратное свойство: about
url URL URL объекта.

Instances of Grant may appear as a value for the following properties
СвойствоOn TypesОписание
funding BioChemEntity или CreativeWork или Event или MedicalEntity или Organization или Person или Product A Grant that directly or indirectly provide funding or sponsorship for this item. See also ownershipFundingInfo.

More specific Types

Source

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

https://schema.org/docs/collab/FundInfoCollab


Examples

Example 1
Copied
Example notes or example HTML without markup.
Basic Grant example.
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Dataset",
  "@id": "https://doi.org/10.5061/dryad.m53r1",
  "funding": {
    "@type": "Grant",
    "identifier": "1452510",
    "funder": {
      "@type": "Organization",
      "name": "National Science Foundation",
      "identifier": "https://doi.org/10.13039/100000001"
     }
   }
}
</script>
Structured representation of the JSON-LD example.
Example 2
Copied
Example notes or example HTML without markup.
Basic research output (dataset) example without detailed grant information.
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Dataset",
  "@id": "https://doi.org/10.5061/dryad.m53r1",
  "funder": {
     "@type": "Organization",
     "name": "National Science Foundation",
     "identifier": "https://doi.org/10.13039/100000001"
  }
}
</script>
Structured representation of the JSON-LD example.
Example 3
Copied
Example notes or example HTML without markup.
Showing funding of a researcher.
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Person",
  "name": "Turner, Caroline B.",
  "givenName": "Caroline B.",
  "familyName": "Turner",
  "funding": {
     "@type": "Grant",
     "identifier": "1448821",
     "funder": {
       "@type": "Organization",
       "name": "National Science Foundation",
       "identifier": "https://doi.org/10.13039/100000001"
     }
   }
}
</script>
Structured representation of the JSON-LD example.
Example 4
Copied
Example notes or example HTML without markup.
A scientific dataset.
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Person",
  "name": "Turner, Caroline B.",
  "givenName": "Caroline B.",
  "familyName": "Turner",
  "funding": {
     "@type": "Grant",
     "identifier": "1448821",
     "funder": {
       "@type": "Organization",
       "name": "National Science Foundation",
       "identifier": "https://doi.org/10.13039/100000001"
     }
   }
}
</script>
Structured representation of the JSON-LD example.
Example 5
Copied
Example notes or example HTML without markup.
EXample showing a research project that was funded by 3 grants.
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context": "https://schema.org/",
  "@type": "ResearchProject",
  "name": "U.S. GLOBEC Southern Ocean",
  "url": "https://www.bco-dmo.org/project/2039",
  "funding": [
    {
      "@type": "MonetaryGrant",
      "name": "Foraging Ecology of Crabeater Seals (Lobodon Carcinophagus)",
      "alternateName": "ANT-9909933",
      "url": "https://www.bco-dmo.org/award/54719",
      "sameAs": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=9909933",
      "funder": {
        "@id": "https://doi.org/10.13039/100000162",
        "@type": "FundingAgency",
        "name": "NSF Antarctic Sciences",
        "alternateName": "NSF ANT",
        "url": "https://www.bco-dmo.org/funding-source/369",
        "sameAs": "https://doi.org/10.13039/100000162",
        "parentOrganization": {
          "@type": "FundingAgency",
          "name": "National Science Foundation",
          "alternateName":  "NSF",
          "sameAs": "https://doi.org/10.13039/100000001"
        }
      }
    },
    {
      "@type": "MonetaryGrant",
      "name": "GLOBEC: Sea Ice Microbial Communities",
      "alternateName": "ANT-9910098",
      "url": "https://www.bco-dmo.org/award/54688",
      "sameAs": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=9910098",
      "funder": {"@id": "https://doi.org/10.13039/100000162"}
    },
    {
      "@type": "MonetaryGrant",
      "name": "unknown SOGLOBEC NSF ANT",
      "url": "https://www.bco-dmo.org/award/54617",
      "funder": {"@id": "https://doi.org/10.13039/100000162"}
    }
  ]
}
</script>
Structured representation of the JSON-LD example.
Example 6
Copied
Example notes or example HTML without markup.
A scientific dataset.
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">
{
  "@context": "https://schema.org",
  "@type": "Person",
  "name": "Turner, Caroline B.",
  "givenName": "Caroline B.",
  "familyName": "Turner",
  "funding": {
     "@type": "Grant",
     "identifier": "1448821",
     "funder": {
       "@type": "Organization",
       "name": "National Science Foundation",
       "identifier": "https://doi.org/10.13039/100000001"
     }
   }
}
</script>
Structured representation of the JSON-LD example.
Example 7
Copied
Example notes or example HTML without markup.
EXample showing that a data repository was funded by the US National Science Foundation.
Example encoded as JSON-LD in a HTML script tag.
<script type="application/ld+json">

{
  "@context": "https://schema.org/",
  "@id": "https://www.bco-dmo.org",
  "@type": "Organization",
  "name": "Biological and Chemical Oceanography Data Management Office",
  "alternateName": "BCO-DMO",
  "url": "https://www.bco-dmo.org",
  "funding": {
    "@type": "MonetaryGrant",
    "name": "BCO-DMO: Accelerating Scientific Discovery through Adaptive Data Management",
    "url": "https://www.nsf.gov/awardsearch/showAward?AWD_ID=1924618",
    "funder": {
      "@type": "FundingAgency",
      "name": "National Science Foundation",
      "alternateName":  "NSF",
      "sameAs": "https://doi.org/10.13039/100000001"
    }
  }
}

</script>
Structured representation of the JSON-LD example.

Обсуждение "Grant"