AbstractField Data Type

Abstract Type
Subtypes
ObjectField, AtomicField
Properties
name data type constraints description
dataType DataType  
description string  
displayName string  
nullable boolean required
name string  
comment string  
properties array of Property  

Example

This data type is abstract. The example below may be incomplete. More accurate examples can be found in subtypes pages.
{
  "dataType" : "BYTE",
  "description" : "...",
  "displayName" : "...",
  "nullable" : true,
  "name" : "...",
  "comment" : "...",
  "properties" : [ {
    "name" : "...",
    "value" : { },
    "type" : "STRING"
  }, {
    "name" : "...",
    "value" : { },
    "type" : "INT"
  } ]
}