You are here

public function SingleNestedEnhancer::getOutputJsonSchema in JSON:API Extras 8.3

Same name and namespace in other branches
  1. 8.2 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\FieldEnhancer

Code

public function getOutputJsonSchema() {
  return [
    'oneOf' => [
      [
        'type' => 'string',
      ],
      [
        'type' => 'null',
      ],
    ],
  ];
}