package com.styledictionaryexample.models import com.fasterxml.jackson.annotation.JsonIgnoreProperties @JsonIgnoreProperties("original", "filePath", "isSource") data class Property( var name: String = "", var value: String ="", var attributes: Map = mutableMapOf(), var path: List = emptyList() )