{"id":22481,"date":"2026-06-05T12:21:57","date_gmt":"2026-06-05T12:21:57","guid":{"rendered":"https:\/\/lifeplatform.eu\/?p=22481"},"modified":"2026-06-05T12:22:54","modified_gmt":"2026-06-05T12:22:54","slug":"supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries","status":"publish","type":"post","link":"https:\/\/lifeplatform.eu\/de\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/","title":{"rendered":"Unterst\u00fctzung f\u00fcr nachhaltige Fischerei und Aquakuturtles-with-tangles\/script.js\n\n\n\nfunction setup() {\n  createCanvas(800, 800);\n  background(255);\n  turtles = [];\n  \n  \/\/ Set the position of the first turtle\n  let x = random(width);\n  let y = random(height);\n\n  for (let i = 0; i &lt; numTurtles; i++) {\n    \/\/ Add turtles to the array\n    turtles.push(new Turtle(x, y));\n  }\n}\n\nfunction draw() {\n  background(255, 10);\n  \n  \/\/ Update and display each turtle\n  for (let i = 0; i &lt; turtles.length; i++) {\n    turtles[i].update();\n    turtles[i].display();\n  }\n}\n\nclass Turtle {\n  constructor(startX, startY) {\n    this.x = startX;\n    this.y = startY;\n    this.angle = random(TWO_PI);\n    this.stepSize = random(1, 10);\n    this.angleChange = random(-0.1, 0.1);\n    this.color = color(random(255), random(255), random(255), random(50, 150));\n  }\n\n  update() {\n    this.angle += this.angleChange;\n    this.x += cos(this.angle) * this.stepSize;\n    this.y += sin(this.angle) * this.stepSize;\n\n    \/\/ Wrap around screen edges\n    if (this.x  width) this.x = 0;\n    if (this.y  height) this.y = 0;\n  }\n\n  display() {\n    fill(this.color);\n    noStroke();\n    ellipse(this.x, this.y, 10, 10);\n  }\n}\nlet turtles = [];\nlet numTurtles = 1000;the-growing-circle\/script.js\nlet circleSize = 50;\n\nfunction setup() {\n  createCanvas(windowWidth, windowHeight);\n}\n\nfunction draw() {\n  background(220);\n  fill(0, 102, 153);\n  ellipse(width \/ 2, height \/ 2, circleSize, circleSize);\n\n  \/\/ Increase the size of the circle\n  circleSize += 1;\n\n  \/\/ Reset the size if it gets too big\n  if (circleSize &gt; width) {\n    circleSize = 50;\n  }\n}\n\nfunction windowResized() {\n  resizeCanvas(windowWidth, windowHeight);\n}\np5.js-starter\/script.js\n\/\/ p5.js Template\n\/\/ This script provides a basic structure for a p5.js sketch.\n\nfunction setup() {\n    \/\/ Create a canvas that fills the window\n    createCanvas(windowWidth, windowHeight);\n    \n    \/\/ Set the background color (RGB values)\n    background(200);\n}\n\nfunction draw() {\n    \/\/ Code here runs continuously, creating the animation loop\n\n    \/\/ Example: Draw a circle that follows the mouse\n    fill(255, 0, 0);\n    ellipse(mouseX, mouseY, 50, 50);\n}\n\nfunction windowResized() {\n    \/\/ Resize the canvas if the window size changes\n    resizeCanvas(windowWidth, windowHeight);\n    background(200);\n}\nthe-expanding-circle\/script.js\nlet circleSize = 50;\nlet maxCircleSize;\n\nfunction setup() {\n  createCanvas(windowWidth, windowHeight);\n  maxCircleSize = dist(0, 0, width, height);\n}\n\nfunction draw() {\n  background(220);\n  \n  \/\/ Set the fill color to a vibrant blue and remove the stroke\n  fill(0, 150, 255);\n  noStroke();\n  \n  \/\/ Draw the circle in the center of the canvas\n  ellipse(width \/ 2, height \/ 2, circleSize, circleSize);\n  \n  \/\/ Increase the size of the circle\n  circleSize += 2;\n  \n  \/\/ Reset the size if it exceeds the maximum size\n  if (circleSize &gt; maxCircleSize) {\n    circleSize = 50;\n  }\n}\n\nfunction windowResized() {\n  resizeCanvas(windowWidth, windowHeight);\n  maxCircleSize = dist(0, 0, width, height);\n}\ncolor-changing-ball\/script.js\nlet x, y;\nlet speedX = 3;\nlet speedY = 4;\nlet radius = 25;\nlet r, g, b;\n\nfunction setup() {\n  createCanvas(windowWidth, windowHeight);\n  x = width \/ 2;\n  y = height \/ 2;\n  changeColor();\n}\n\nfunction draw() {\n  background(220, 25); \/\/ Slight fade effect\n\n  \/\/ Update position\n  x += speedX;\n  y += speedY;\n\n  \/\/ Bounce off walls and change color\n  if (x - radius  width) {\n    speedX *= -1;\n    changeColor();\n  }\n  if (y - radius  height) {\n    speedY *= -1;\n    changeColor();\n  }\n\n  \/\/ Draw ball\n  fill(r, g, b);\n  noStroke();\n  ellipse(x, y, radius * 2, radius * 2);\n}\n\nfunction changeColor() {\n  r = random(100, 255);\n  g = random(100, 255);\n  b = random(100, 255);\n}\n\nfunction windowResized() {\n  resizeCanvas(windowWidth, windowHeight);\n}\nbouncing-ball\/script.js\nlet x, y;\nlet xSpeed, ySpeed;\nlet radius = 25;\n\nfunction setup() {\n  createCanvas(windowWidth, windowHeight);\n  x = random(radius, width - radius);\n  y = random(radius, height - radius);\n  xSpeed = 4;\n  ySpeed = 3;\n}\n\nfunction draw() {\n  background(220);\n\n  \/\/ Update position\n  x += xSpeed;\n  y += ySpeed;\n\n  \/\/ Check for bounce off walls\n  if (x - radius  width) {\n    xSpeed *= -1;\n  }\n  if (y - radius  height) {\n    ySpeed *= -1;\n  }\n\n  \/\/ Draw the ball\n  fill(255, 0, 100);\n  noStroke();\n  ellipse(x, y, radius * 2, radius * 2);\n}\n\nfunction windowResized() {\n  resizeCanvas(windowWidth, windowHeight);\n}\n."},"content":{"rendered":"<p class=\"isSelectedEnd\">LIFE begr\u00fc\u00dft die Schl\u00fcsselelemente des von PECH-Berichterstatter Niclas Herbst vorgelegten Entwurfsberichts \u00fcber die k\u00fcnftige Finanzierung der EU-Fischerei und -Aquakultur im Rahmen des mehrj\u00e4hrigen Finanzrahmens 2028\u20132034. Insbesondere der Vorschlag, Mittel f\u00fcr den Sektor zweckgebunden zu reservieren und einen dedizierten Finanzierungsstrom f\u00fcr Fischerei und Aquakultur zu erhalten, ist ein wichtiger Schritt, um sicherzustellen, dass die Unterst\u00fctzung die Fischergemeinden erreicht.<\/p>\n<p class=\"isSelectedEnd\">LIFE ist jedoch besorgt, dass die vorgeschlagene \u00dcberarbeitung der Definition der kleinen K\u00fcstenfischerei erhebliche Schlupfl\u00f6cher schaffen k\u00f6nnte, die es gr\u00f6\u00dferen und umweltsch\u00e4dlicheren Schiffen erm\u00f6glichen, sich f\u00fcr Beihilfen zu qualifizieren, die f\u00fcr echte Kleinbetreiber bestimmt sind. Um sicherzustellen, dass die Mittel ihre beabsichtigten sozialen, wirtschaftlichen und \u00f6kologischen Vorteile entfalten, fordert LIFE die Beibehaltung der aktuellen EMFAF-Definition der kleinen K\u00fcstenfischerei und die Einrichtung eines auf die Realit\u00e4ten des Sektors zugeschnittenen F\u00f6rdersystems.<\/p>\n<h4 style=\"text-align: center;\"><a href=\"https:\/\/lifeplatform.eu\/wp-content\/uploads\/2026\/06\/LIFE-Position-Supporting-Sustainable-Fisheries-and-Aquaculture-in-the-Next-EU-Budget.pdf\">Greifen Sie hier auf die vollst\u00e4ndige Stelle zu<\/a><\/h4>","protected":false},"excerpt":{"rendered":"<p>LIFE welcomes key elements of the draft report presented by PECH Rapporteur Niclas Herbst on the future financing of EU fisheries and aquaculture under the 2028\u20132034 Multiannual Financial Framework. In particular, the proposal to ring-fence funding for the sector and preserve a dedicated fisheries and aquaculture funding stream is an important step towards ensuring that [&hellip;]<\/p>\n","protected":false},"author":2,"featured_media":22483,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[1531],"tags":[],"class_list":["post-22481","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-policy-positions","has-post-title","has-post-date","has-post-category","has-post-tag","has-post-comment","has-post-author",""],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v28.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Supporting Sustainable Fisheries and Aquaculture in the Next EU Budget: right on ring-fencing the budget, wrong on defining small-scale fisheries. - Life Platform<\/title>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/lifeplatform.eu\/de\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/\" \/>\n<meta property=\"og:locale\" content=\"de_DE\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Supporting Sustainable Fisheries and Aquaculture in the Next EU Budget: right on ring-fencing the budget, wrong on defining small-scale fisheries. - Life Platform\" \/>\n<meta property=\"og:description\" content=\"LIFE welcomes key elements of the draft report presented by PECH Rapporteur Niclas Herbst on the future financing of EU fisheries and aquaculture under the 2028\u20132034 Multiannual Financial Framework. In particular, the proposal to ring-fence funding for the sector and preserve a dedicated fisheries and aquaculture funding stream is an important step towards ensuring that [&hellip;]\" \/>\n<meta property=\"og:url\" content=\"https:\/\/lifeplatform.eu\/de\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/\" \/>\n<meta property=\"og:site_name\" content=\"Life Platform\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/Low-Impact-Fishers-of-Europe-166393173503352\/?ref=hl\" \/>\n<meta property=\"article:published_time\" content=\"2026-06-05T12:21:57+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2026-06-05T12:22:54+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/lifeplatform.eu\/wp-content\/uploads\/2026\/06\/martaposemuckel-banknotes-209104.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2212\" \/>\n\t<meta property=\"og:image:height\" content=\"1474\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"author\" content=\"LIFE Platform\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@LIFEplatformEU\" \/>\n<meta name=\"twitter:site\" content=\"@LIFEplatformEU\" \/>\n<meta name=\"twitter:label1\" content=\"Verfasst von\" \/>\n\t<meta name=\"twitter:data1\" content=\"LIFE Platform\" \/>\n\t<meta name=\"twitter:label2\" content=\"Gesch\u00e4tzte Lesezeit\" \/>\n\t<meta name=\"twitter:data2\" content=\"1\u00a0Minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\\\/\"},\"author\":{\"name\":\"LIFE Platform\",\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/ro\\\/#\\\/schema\\\/person\\\/08408243d2c0a0f8f8a0e490f873351c\"},\"headline\":\"Supporting Sustainable Fisheries and Aquaculture in the Next EU Budget: right on ring-fencing the budget, wrong on defining small-scale fisheries.\",\"datePublished\":\"2026-06-05T12:21:57+00:00\",\"dateModified\":\"2026-06-05T12:22:54+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\\\/\"},\"wordCount\":155,\"image\":{\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/lifeplatform.eu\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/martaposemuckel-banknotes-209104.jpg\",\"articleSection\":[\"Policy positions\"],\"inLanguage\":\"de\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\\\/\",\"url\":\"https:\\\/\\\/lifeplatform.eu\\\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\\\/\",\"name\":\"Supporting Sustainable Fisheries and Aquaculture in the Next EU Budget: right on ring-fencing the budget, wrong on defining small-scale fisheries. - Life Platform\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/ro\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/lifeplatform.eu\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/martaposemuckel-banknotes-209104.jpg\",\"datePublished\":\"2026-06-05T12:21:57+00:00\",\"dateModified\":\"2026-06-05T12:22:54+00:00\",\"author\":{\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/ro\\\/#\\\/schema\\\/person\\\/08408243d2c0a0f8f8a0e490f873351c\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\\\/#breadcrumb\"},\"inLanguage\":\"de\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/lifeplatform.eu\\\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\\\/#primaryimage\",\"url\":\"https:\\\/\\\/lifeplatform.eu\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/martaposemuckel-banknotes-209104.jpg\",\"contentUrl\":\"https:\\\/\\\/lifeplatform.eu\\\/wp-content\\\/uploads\\\/2026\\\/06\\\/martaposemuckel-banknotes-209104.jpg\",\"width\":2212,\"height\":1474},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/lifeplatform.eu\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Supporting Sustainable Fisheries and Aquaculture in the Next EU Budget: right on ring-fencing the budget, wrong on defining small-scale fisheries.\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/ro\\\/#website\",\"url\":\"https:\\\/\\\/lifeplatform.eu\\\/ro\\\/\",\"name\":\"Life Platform\",\"description\":\"\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/lifeplatform.eu\\\/ro\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"de\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/lifeplatform.eu\\\/ro\\\/#\\\/schema\\\/person\\\/08408243d2c0a0f8f8a0e490f873351c\",\"name\":\"LIFE Platform\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"de\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6ca31bdd062853151bd502f8094814ad24e1606702561c4c2e605059ca8fd994?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6ca31bdd062853151bd502f8094814ad24e1606702561c4c2e605059ca8fd994?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/6ca31bdd062853151bd502f8094814ad24e1606702561c4c2e605059ca8fd994?s=96&d=mm&r=g\",\"caption\":\"LIFE Platform\"},\"url\":\"https:\\\/\\\/lifeplatform.eu\\\/de\\\/author\\\/claudia2015\\\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Supporting Sustainable Fisheries and Aquaculture in the Next EU Budget: right on ring-fencing the budget, wrong on defining small-scale fisheries. - Life Platform","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/lifeplatform.eu\/de\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/","og_locale":"de_DE","og_type":"article","og_title":"Supporting Sustainable Fisheries and Aquaculture in the Next EU Budget: right on ring-fencing the budget, wrong on defining small-scale fisheries. - Life Platform","og_description":"LIFE welcomes key elements of the draft report presented by PECH Rapporteur Niclas Herbst on the future financing of EU fisheries and aquaculture under the 2028\u20132034 Multiannual Financial Framework. In particular, the proposal to ring-fence funding for the sector and preserve a dedicated fisheries and aquaculture funding stream is an important step towards ensuring that [&hellip;]","og_url":"https:\/\/lifeplatform.eu\/de\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/","og_site_name":"Life Platform","article_publisher":"https:\/\/www.facebook.com\/Low-Impact-Fishers-of-Europe-166393173503352\/?ref=hl","article_published_time":"2026-06-05T12:21:57+00:00","article_modified_time":"2026-06-05T12:22:54+00:00","og_image":[{"width":2212,"height":1474,"url":"https:\/\/lifeplatform.eu\/wp-content\/uploads\/2026\/06\/martaposemuckel-banknotes-209104.jpg","type":"image\/jpeg"}],"author":"LIFE Platform","twitter_card":"summary_large_image","twitter_creator":"@LIFEplatformEU","twitter_site":"@LIFEplatformEU","twitter_misc":{"Verfasst von":"LIFE Platform","Gesch\u00e4tzte Lesezeit":"1\u00a0Minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/lifeplatform.eu\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/#article","isPartOf":{"@id":"https:\/\/lifeplatform.eu\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/"},"author":{"name":"LIFE Platform","@id":"https:\/\/lifeplatform.eu\/ro\/#\/schema\/person\/08408243d2c0a0f8f8a0e490f873351c"},"headline":"Supporting Sustainable Fisheries and Aquaculture in the Next EU Budget: right on ring-fencing the budget, wrong on defining small-scale fisheries.","datePublished":"2026-06-05T12:21:57+00:00","dateModified":"2026-06-05T12:22:54+00:00","mainEntityOfPage":{"@id":"https:\/\/lifeplatform.eu\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/"},"wordCount":155,"image":{"@id":"https:\/\/lifeplatform.eu\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/#primaryimage"},"thumbnailUrl":"https:\/\/lifeplatform.eu\/wp-content\/uploads\/2026\/06\/martaposemuckel-banknotes-209104.jpg","articleSection":["Policy positions"],"inLanguage":"de"},{"@type":"WebPage","@id":"https:\/\/lifeplatform.eu\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/","url":"https:\/\/lifeplatform.eu\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/","name":"Supporting Sustainable Fisheries and Aquaculture in the Next EU Budget: right on ring-fencing the budget, wrong on defining small-scale fisheries. - Life Platform","isPartOf":{"@id":"https:\/\/lifeplatform.eu\/ro\/#website"},"primaryImageOfPage":{"@id":"https:\/\/lifeplatform.eu\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/#primaryimage"},"image":{"@id":"https:\/\/lifeplatform.eu\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/#primaryimage"},"thumbnailUrl":"https:\/\/lifeplatform.eu\/wp-content\/uploads\/2026\/06\/martaposemuckel-banknotes-209104.jpg","datePublished":"2026-06-05T12:21:57+00:00","dateModified":"2026-06-05T12:22:54+00:00","author":{"@id":"https:\/\/lifeplatform.eu\/ro\/#\/schema\/person\/08408243d2c0a0f8f8a0e490f873351c"},"breadcrumb":{"@id":"https:\/\/lifeplatform.eu\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/#breadcrumb"},"inLanguage":"de","potentialAction":[{"@type":"ReadAction","target":["https:\/\/lifeplatform.eu\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/"]}]},{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/lifeplatform.eu\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/#primaryimage","url":"https:\/\/lifeplatform.eu\/wp-content\/uploads\/2026\/06\/martaposemuckel-banknotes-209104.jpg","contentUrl":"https:\/\/lifeplatform.eu\/wp-content\/uploads\/2026\/06\/martaposemuckel-banknotes-209104.jpg","width":2212,"height":1474},{"@type":"BreadcrumbList","@id":"https:\/\/lifeplatform.eu\/supporting-sustainable-fisheries-and-aquaculture-in-the-next-eu-budget-right-on-ring-fencing-the-budget-wrong-on-defining-small-scale-fisheries\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/lifeplatform.eu\/"},{"@type":"ListItem","position":2,"name":"Supporting Sustainable Fisheries and Aquaculture in the Next EU Budget: right on ring-fencing the budget, wrong on defining small-scale fisheries."}]},{"@type":"WebSite","@id":"https:\/\/lifeplatform.eu\/ro\/#website","url":"https:\/\/lifeplatform.eu\/ro\/","name":"Plattform Leben","description":"","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/lifeplatform.eu\/ro\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"de"},{"@type":"Person","@id":"https:\/\/lifeplatform.eu\/ro\/#\/schema\/person\/08408243d2c0a0f8f8a0e490f873351c","name":"LIFE-Plattform","image":{"@type":"ImageObject","inLanguage":"de","@id":"https:\/\/secure.gravatar.com\/avatar\/6ca31bdd062853151bd502f8094814ad24e1606702561c4c2e605059ca8fd994?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/6ca31bdd062853151bd502f8094814ad24e1606702561c4c2e605059ca8fd994?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/6ca31bdd062853151bd502f8094814ad24e1606702561c4c2e605059ca8fd994?s=96&d=mm&r=g","caption":"LIFE Platform"},"url":"https:\/\/lifeplatform.eu\/de\/author\/claudia2015\/"}]}},"_links":{"self":[{"href":"https:\/\/lifeplatform.eu\/de\/wp-json\/wp\/v2\/posts\/22481","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/lifeplatform.eu\/de\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/lifeplatform.eu\/de\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/lifeplatform.eu\/de\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/lifeplatform.eu\/de\/wp-json\/wp\/v2\/comments?post=22481"}],"version-history":[{"count":4,"href":"https:\/\/lifeplatform.eu\/de\/wp-json\/wp\/v2\/posts\/22481\/revisions"}],"predecessor-version":[{"id":22487,"href":"https:\/\/lifeplatform.eu\/de\/wp-json\/wp\/v2\/posts\/22481\/revisions\/22487"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/lifeplatform.eu\/de\/wp-json\/wp\/v2\/media\/22483"}],"wp:attachment":[{"href":"https:\/\/lifeplatform.eu\/de\/wp-json\/wp\/v2\/media?parent=22481"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/lifeplatform.eu\/de\/wp-json\/wp\/v2\/categories?post=22481"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/lifeplatform.eu\/de\/wp-json\/wp\/v2\/tags?post=22481"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}