Files
marka/registry/schema-org/ReviewAction.schema.json
Max Richter c687eff53d big tings
2025-08-17 15:16:17 +02:00

23 lines
739 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:ReviewAction",
"title": "ReviewAction",
"description": "The act of producing a balanced opinion about the object for an audience. An agent reviews an object with participants resulting in a review.",
"type": "object",
"allOf": [
{
"description": "The act of forming one's opinion, reaction or sentiment.",
"$ref": "schema:AssessAction"
}
],
"properties": {
"resultReview": {
"description": "A sub property of result. The review that resulted in the performing of the action.",
"oneOf": [
{ "$ref": "schema:Review" },
{ "type": "array", "items": { "$ref": "schema:Review" } }
]
}
}
}