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

20 lines
937 B
JSON

{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "schema:Quotation",
"title": "Quotation",
"description": "A quotation. Often but not necessarily from some written work, attributable to a real world author and - if associated with a fictional character - to any fictional Person. Use [[isBasedOn]] to link to source/origin. The [[recordedIn]] property can be used to reference a Quotation from an [[Event]].",
"type": "object",
"allOf": [
{
"description": "The most generic kind of creative work, including books, movies, photographs, software programs, etc.",
"$ref": "schema:CreativeWork"
}
],
"properties": {
"spokenByCharacter": {
"description": "The (e.g. fictional) character, Person or Organization to whom the quotation is attributed within the containing CreativeWork.",
"anyOf": [{ "$ref": "schema:Organization" }, { "$ref": "schema:Person" }]
}
}
}