@unito/integration-api
Version:
The Unito Integration API
35 lines (34 loc) • 784 B
JSON
{
"$id": "https://unito.io/integration_api/webhookParsedItem.schema.json",
"title": "WebhookParsedItem",
"type": "object",
"additionalProperties": false,
"properties": {
"itemPath": {
"type": "string"
},
"date": {
"type": "string"
},
"impactedRelations": {
"type": "array",
"items": {
"type": "object",
"required": ["name", "impactedItems"],
"properties": {
"name": {
"type": "string",
"nullable": false
},
"impactedItems": {
"type": "array",
"nullable": false,
"items": {
"$ref": "https://unito.io/integration_api/webhookParsedItem.schema.json"
}
}
}
}
}
}
}