Search Response Schema
PYSCH
{
"$schema": "http://json-schema.org/draft-04/schema#",
"type": "object",
"properties": {
"criteria": {
"type": "string"
},
"type": {
"type": "string"
},
"status": {
"type": "string"
},
"sources": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"name": {
"type": "string"
}
},
"required": [
"name"
]
}
]
},
"data": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"status": {
"type": "string"
},
"psychAnalyst": {
"type": "object",
"properties": {
"profiles": {
"type": "array",
"items": [
{
"type": "object",
"properties": {
"personName": {
"type": "string"
},
"psychologicalPortrait": {
"type": "string"
},
"levelOfDanger": {
"type": "string"
},
"predictedCharacteristics": {
"type": "array",
"items": [
{
"type": "string"
},
{
"type": "string"
}
]
}
},
"required": [
"personName",
"psychologicalPortrait",
"levelOfDanger",
"predictedCharacteristics"
]
}
]
}
},
"required": [
"profiles"
]
}
},
"required": [
"status",
"psychAnalyst"
]
}
]
}
},
"required": [
"criteria",
"type",
"status",
"sources",
"data"
]
}SUMMARY
Last updated