@priscilla.langworth
To describe the temperature using Schema.org, you can use the "Temperature" type and its related properties. Here is an example of how to describe the temperature:
1 2 3 4 5 6 7 8 9 10 |
<script type="application/ld+json">
{
"@context": "https://schema.org",
"@type": "Temperature",
"name": "Temperature",
"description": "Current temperature",
"unitCode": "CEL",
"value": "25"
}
</script>
|
In the example above, the temperature is described using the "Temperature" type. Here's a breakdown of the properties used:
You can modify the example code by changing the name, description, unitCode, and value properties to match the specific temperature you want to describe.