You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
senpy/senpy/schemas/analysis.json

28 lines
668 B
JSON

{
"$schema": "http://json-schema.org/draft-04/schema#",
"description": "Senpy analysis",
"type": "object",
"properties": {
"@id": {
"type": "string"
},
"@type": {
"type": "string",
"description": "Type of the analysis. e.g. marl:SentimentAnalysis"
},
"prov:wasAssociatedWith": {
"@type": "string",
"description": "Algorithm/plugin that was used"
},
"prov:used": {
"description": "Parameters of the algorithm",
"@type": "array",
"type": "array",
"items": {
"$ref": "parameter.json"
}
}
},
"required": ["@type", "prov:wasAssociatedWith"]
}