public function SingleNestedEnhancer::getOutputJsonSchema in JSON:API Extras 8.2
Same name and namespace in other branches
- 8.3 src/Plugin/jsonapi/FieldEnhancer/SingleNestedEnhancer.php \Drupal\jsonapi_extras\Plugin\jsonapi\FieldEnhancer\SingleNestedEnhancer::getOutputJsonSchema()
Get the JSON Schema for the new output.
Return value
array An structured array representing the JSON Schema of the new output.
Overrides ResourceFieldEnhancerInterface::getOutputJsonSchema
File
- src/
Plugin/ jsonapi/ FieldEnhancer/ SingleNestedEnhancer.php, line 63
Class
- SingleNestedEnhancer
- Perform additional manipulations to date fields.
Namespace
Drupal\jsonapi_extras\Plugin\jsonapi\FieldEnhancerCode
public function getOutputJsonSchema() {
return [
'oneOf' => [
[
'type' => 'string',
],
[
'type' => 'null',
],
],
];
}