You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
id represents the human-readable identifier associated to the event for a specific MISP instance.
Currently https://github.com/MISP/MISP project uses integers for IDs, but if I'm reading this correctly this is just implementation specific and any other implementation could put here whatever they wanted (another UUID or slug name or some kind of hash).
The text was updated successfully, but these errors were encountered:
Indeed, the RFC is based on the MISP core implementation. Where the practice is to have an integer represented as a string for the ID. @iglocska what do you think?
If that is the case please it would be good to add the number range constrains. I have read skimmed MISP software source code, but it seems the ID is limited by MySQL int(11) field, i.e. signed 4-byte integer. On PostgreSQL it seems to use twice the bytes for the ID, but MySQL is the default, right?
Currently https://github.com/MISP/MISP project uses integers for IDs, but if I'm reading this correctly this is just implementation specific and any other implementation could put here whatever they wanted (another UUID or slug name or some kind of hash).
The text was updated successfully, but these errors were encountered: