Creating Rule Serializers ========================= Rule serializers are simple classes which inherit from :py:class:`~sigma.serializer.Serializer` and implement the :py:meth:`~sigma.serializer.Serializer.serialize` method. This method takes a rule or list of rules, and returns arbitrary data which represents some transformed and converted rule. Configuration ------------- Serializer configuration is defined through the ``SerializerClass.Schema`` class. This class must inherit from :py:class:`~sigma.serializer.CommonSerializerSchema`, which is a pydantic model. .. code-block:: python :caption: Defining serializer configuration schema from typing import List from sigma.serializer import CommonSerializerSchema, Serializer from sigma.utils import CopyableSchema class CustomSerializer(Serializer): class Schema(CommonSerializerSchema): my_config: str other_config: List[int] class Config(CopyableSchema): schema_extra = CommonSerializerSchema.Config.copy_schema(example_extra={ "my_config": "hello world", "other_config": [1,2,3,4,5], }) .. warning:: The definition of a ``Config`` is optional, but recommended. Defining examples allows users to utilize the ``sigma schema serializer`` command to view examples for your schema configuration. .. note:: Using the :py:class:`~sigma.utils.CopyableSchema` base class allows future users to who may extend your serializer to easily extend your own example schemas as well. The :py:class:`CommonSerializerSchema.Config ` method. You should only apply rule transformations if the ``transform`` argument is ``True``. This is to enable easier chaining of serializers through inheritence. Example Serializer ------------------ The following is an extremely basic (and mostly useless) serializer. It will apply any configured transformations, and then return a simple ``repr`` of the conditional expression. .. code-block:: python from typing import Union, List from sigma.serializer import Serializer from sigma.schema import Rule class CustomSerializer(Serializer): def serialize(self, rule: Union[Rule, List[Rule]], transform: bool = True): if isinstance(rule, list): return [self.serialize(r) for r in rule] if transform: rule = rule.transform(self.transforms) return repr(rule.detection.expression)