mirror of
https://github.com/gsi-upm/senpy
synced 2025-07-14 07:32:21 +00:00
28 lines
640 B
JSON
28 lines
640 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"properties": {
|
|
"@id": {"type": "string"},
|
|
"nif:beginIndex": {"type": "integer"},
|
|
"nif:endIndex": {"type": "integer"},
|
|
"nif:anchorOf": {
|
|
"description": "Piece of context that contains the Emotion",
|
|
"type": "string"
|
|
},
|
|
"onyx:hasDimension": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "dimensions.json"
|
|
},
|
|
"uniqueItems": true
|
|
},
|
|
"onyx:hasEmotionCategory": {
|
|
"type": "array",
|
|
"items": {
|
|
"$ref": "emotion.json"
|
|
},
|
|
"default": []
|
|
}
|
|
},
|
|
"required": ["@id", "onyx:hasEmotion"]
|
|
}
|