public static function NativeBinaryJSONItem::propertyDefinitions in JSON Field 8
Defines field item properties.
Properties that are required to constitute a valid, non-empty item should be denoted with \Drupal\Core\TypedData\DataDefinition::setRequired().
Return value
\Drupal\Core\TypedData\DataDefinitionInterface[] An array of property definitions of contained properties, keyed by property name.
Overrides NativeJSONItem::propertyDefinitions
See also
\Drupal\Core\Field\BaseFieldDefinition
File
- src/
Plugin/ Field/ FieldType/ NativeBinaryJSONItem.php, line 42
Class
- NativeBinaryJSONItem
- Plugin implementation of the 'jsonb' field type.
Namespace
Drupal\json_field\Plugin\Field\FieldTypeCode
public static function propertyDefinitions(FieldStorageDefinitionInterface $field_definition) {
$properties['value'] = DataDefinition::create('string')
->setLabel(t('JSONB value'));
return $properties;
}