We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 25f931c commit 69415a1Copy full SHA for 69415a1
src/main/java/io/frictionlessdata/tableschema/field/Field.java
@@ -551,14 +551,26 @@ public String getTitle(){
551
return this.title;
552
}
553
554
+ public void setTitle(String title) {
555
+ this.title = title;
556
+ }
557
+
558
public String getDescription(){
559
return this.description;
560
561
562
+ public void setDescription(String description) {
563
+ this.description = description;
564
565
566
public Map<String, Object> getConstraints(){
567
return this.constraints;
568
569
570
+ public void setConstraints(Map<String, Object> constraints) {
571
+ this.constraints = constraints;
572
573
574
public URI getRdfType() {
575
return rdfType;
576
0 commit comments