Neos\Neos\Controller\Backend\SchemaController::nodeTypeSchemaAction PHP Method

nodeTypeSchemaAction() public method

Get the node type configuration schema for the Neos UI
public nodeTypeSchemaAction ( ) : string
return string
    public function nodeTypeSchemaAction()
    {
        $this->response->setHeader('Content-Type', 'application/json');
        return json_encode($this->nodeTypeSchemaBuilder->generateNodeTypeSchema());
    }