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