mirror of
https://github.com/gsi-upm/senpy
synced 2025-10-20 02:08:26 +00:00
* Added conversion plugins (API might change!) * Added conversion to the analysis pipeline * Changed behaviour of --default-plugins (it adds conversion plugins regardless) * Added emotionModel [sic] and emotionConversion models //TODO add conversion tests //TODO add conversion to docs
24 lines
463 B
JSON
24 lines
463 B
JSON
{
|
|
"$schema": "http://json-schema.org/draft-04/schema#",
|
|
"description": "Base schema for all Senpy objects",
|
|
"type": "object",
|
|
"allOf": [
|
|
{"$ref": "atom.json"},
|
|
{
|
|
"properties": {
|
|
"message": {
|
|
"type": "string"
|
|
},
|
|
"errors": {
|
|
"type": "array",
|
|
"items": {"type": "object"}
|
|
},
|
|
"status": {
|
|
"type": "number"
|
|
}
|
|
},
|
|
"required": ["message"]
|
|
}
|
|
]
|
|
}
|