packages feed

hercules-ci-api-agent-0.2.1.0: src/Hercules/API/Agent/Evaluate/EvaluateEvent/AttributeEvent.hs

{-# LANGUAGE ConstraintKinds #-}
{-# LANGUAGE DeriveAnyClass #-}

module Hercules.API.Agent.Evaluate.EvaluateEvent.AttributeEvent where

import Hercules.API.Prelude

data AttributeEvent
  = AttributeEvent
      { expressionPath :: [Text],
        derivationPath :: Text
        -- TODO: meta attributes
      }
  deriving (Generic, Show, Eq, ToJSON, FromJSON, ToSchema)