Skip to content

Guidance for using TrainingMaterial

The TrainingMaterial profile fits into the schema.org hierarchy as follows:

Thing > CreativeWork > LearningResource

Warning

The following examples have been written with the support of generative AI and may be incomplete or inaccurate. Please contact us with any feedback, suggestions or corrections.

Example using LearningResource

A recorded webinar exploring the science of climate change and the complexities of policy-making processes. Aimed at graduate students and policy professionals.

JSON-LD code

{
    "@context": "https://schema.org",
    "@type": "LearningResource",
    "http://purl.org/dc/terms/conformsTo": {
      "@id": "https://bioschemas.org/profiles/TrainingMaterial/1.0-RELEASE",
      "@type": "CreativeWork"
    },
    "name": "Climate Change and Policy Making",
    "description": "A webinar discussing the scientific basis of climate change and how international and national policies are shaped in response.",
    "keywords": ["climate change", "policy", "environmental science", "sustainability"],
    "audience": {
        "@type": "EducationalAudience",
        "audienceType": "Graduate students in Environmental Science"
    },
    "educationalLevel": "Graduate",
    "about": {
        "@type": "Thing",
        "name": "Environmental Policy"
    },
    "author": {
        "@type": "Organization",
        "name": "United Nations Environment Programme"
    },
    "creativeWorkStatus": "Published",
    "recordedAt": {
        "@type": "Event",
        "name": "UNEP Climate Education Webinar Series 2025",
        "startDate": "2025-04-15"
    }
}

Diagram

graph LR
LearningResource_ClimateChangeAndPolicyMaking["LearningResource: Climate Change and Policy Making"]
Thing_EnvironmentalPolicy["Thing: Environmental Policy"]
Text_Graduate["Text: Graduate"]
EducationalAudience_Graduate["EducationalAudience: Graduate students in Environmental Science"]
Organization_UNEP["Organization: United Nations Environment Programme"]
Event_UNEPWebinar["Event: UNEP Climate Education Webinar Series 2025"]
Series_ClimateSeries2025["Series: Climate Education Series 2025"]

LearningResource_ClimateChangeAndPolicyMaking -->|about| Thing_EnvironmentalPolicy
LearningResource_ClimateChangeAndPolicyMaking -->|audience| EducationalAudience_Graduate
LearningResource_ClimateChangeAndPolicyMaking -->|educationalLevel| Text_Graduate
LearningResource_ClimateChangeAndPolicyMaking -->|author| Organization_UNEP
LearningResource_ClimateChangeAndPolicyMaking -->|recordedAt| Event_UNEPWebinar
LearningResource_ClimateChangeAndPolicyMaking -->|isPartOf| Series_ClimateSeries2025