module Debate.Arguments.Template exposing (..) import Debate.Types exposing (..) argument : Argument argument = { argumentTitle = "" , propositionTitle = "" , propositionReductio = "" , propositionSummary = "" , proofLink = "" , definitionTable = [ { definiendum = "" , definiens = "" } , { definiendum = "" , definiens = "" } , { definiendum = "" , definiens = "" } , { definiendum = "" , definiens = "" } , { definiendum = "" , definiens = "" } , { definiendum = "" , definiens = "" } ] , argumentFormalization = [ { premises = [ { premise = "" , notation = "" } , { premise = "" , notation = "" } , { premise = "" , notation = "" } , { premise = "" , notation = "" } , { premise = "" , notation = "" } ] , conclusion = "" , conclusionNotation = "" } ] }