[Incident Management] Investigation Guide backend (#216377)

## Summary

Related to #213024.

This adds the necessary backend schema changes for the investigation
guide.

Note this PR depends on #216292 and should not be merged before it.

---------

Co-authored-by: Panagiota Mitsopoulou <giota85@gmail.com>
Co-authored-by: Elastic Machine <elasticmachine@users.noreply.github.com>
Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com>
Co-authored-by: Panagiota Mitsopoulou <panagiota.mitsopoulou@elastic.co>
Co-authored-by: Christos Nasikas <xristosnasikas@gmail.com>
This commit is contained in:
Justin Kambic 2025-05-02 10:16:50 -04:00 committed by GitHub
parent a63f793a2c
commit 8ee1cebadf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
45 changed files with 1018 additions and 20 deletions

View file

@ -21,6 +21,9 @@
"actions.actionTypeId",
"actions.group",
"alertTypeId",
"artifacts",
"artifacts.investigation_guide",
"artifacts.investigation_guide.blob",
"consumer",
"createdAt",
"createdBy",

View file

@ -71,6 +71,17 @@
"alertTypeId": {
"type": "keyword"
},
"artifacts": {
"properties": {
"investigation_guide": {
"properties": {
"blob": {
"type": "text"
}
}
}
}
},
"consumer": {
"type": "keyword"
},